Skip to content

Commit

Permalink
static check
Browse files Browse the repository at this point in the history
  • Loading branch information
williexu committed Jul 11, 2018
1 parent 144d062 commit a98e00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def _handle_extension_suppressions(extensions):
self.command_group_table.update(extension_group_table)
elapsed_time = timeit.default_timer() - start_time
logger.debug("Loaded extension '%s' in %.3f seconds.", ext_name, elapsed_time)
except Exception as ex: # pylint: disable=broad-except
except Exception: # pylint: disable=broad-except
self.cli_ctx.raise_event(EVENT_FAILED_EXTENSION_LOAD, extension_name=ext_name)
logger.warning("Unable to load extension '%s'. Use --debug for more information.", ext_name)
logger.debug(traceback.format_exc())
Expand Down

0 comments on commit a98e00c

Please sign in to comment.