Skip to content

Commit

Permalink
fixing error message when jedi is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
mriehl committed Jul 29, 2014
1 parent d66e0b0 commit f305168
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def initialize_jedi_linter_plugin(project, logger):
@after("prepare")
def assert_jedi_is_installed(logger):
if not jedi:
raise MissingPrerequisiteException("Missing build dependency `jedi`, please install_dependencies first.")
raise MissingPrerequisiteException("'jedi'", caller="jedi_linter_plugin")
if "_analysis" not in dir(jedi.Script):
raise InternalException(
"The jedi linter API changed, please file a bug at https://github.com/pybuilder/pybuilder/issues/new")
Expand Down

0 comments on commit f305168

Please sign in to comment.