Index: tools/cr/cr/commands/command.py |
diff --git a/tools/cr/cr/commands/command.py b/tools/cr/cr/commands/command.py |
index a648a8c492afaa3b98b7400704ad65630d10e5c4..d2e65a2be39c7e4d845c6cd130b6f9cd430be09c 100644 |
--- a/tools/cr/cr/commands/command.py |
+++ b/tools/cr/cr/commands/command.py |
@@ -100,6 +100,5 @@ class Command(cr.Plugin, cr.Plugin.Type): |
context: The context to run the command in. |
""" |
_ = context |
- print 'Command "{0}" not implemented'.format(self.name) |
- exit(1) |
+ raise NotImplementedError('Must be overridden.') |