Skip to content

Commit

Permalink
Fix incorrect raise NotImplemented
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisamin committed May 25, 2018
1 parent eb8d79a commit 586a25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ripe/atlas/tools/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def init_args(self, args=None):
self._modify_parser_args(args))

def run(self):
raise NotImplemented()
raise NotImplementedError()

def add_arguments(self):
"""
Expand Down

0 comments on commit 586a25c

Please sign in to comment.