diff options
author | 2016-01-23 15:31:07 -0800 | |
---|---|---|
committer | 2016-01-23 15:31:07 -0800 | |
commit | fd8b642afb7ec732f2407553788fe49aed27cdec (patch) | |
tree | 6012b1e7ef785ce434aaa1a5d84a30ee41ef9d25 /gkeys | |
parent | Bump versions for a release (diff) | |
download | gentoo-keys-fd8b642afb7ec732f2407553788fe49aed27cdec.tar.gz gentoo-keys-fd8b642afb7ec732f2407553788fe49aed27cdec.tar.bz2 gentoo-keys-fd8b642afb7ec732f2407553788fe49aed27cdec.zip |
actions.py: Update for ssl-fetch API changes
Diffstat (limited to 'gkeys')
-rw-r--r-- | gkeys/gkeys/actions.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index d3e403d..d61b415 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -712,9 +712,15 @@ class Actions(ActionBase): 'info': self.logger.info, 'debug': self.logger.debug, 'error': self.logger.error, + 'exception': self.logger.exception, + # we want any warnings to be printed to the terminal + # so assign it to logging.error + 'warning': self.logger.error, 'kwargs-info': {}, 'kwargs-debug': {}, 'kwargs-error': {}, + 'kwargs-exception': {}, + 'kwargs-warning': {}, } fetcher = Connector(connector_output, None, "Gentoo Keys") self.logger.debug( |