Skip to content
Snippets Groups Projects
Commit 1d1c303b authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix typo when using sys.stderr.write

parent f63208a1
No related branches found
No related tags found
No related merge requests found
......@@ -26,5 +26,5 @@ if __name__ == "__main__":
print getattr(config, key)
sys.exit(0)
else:
sys.stderr.write("Unknown command %r", action)
sys.stderr.write("Unknown command %r\n" % (action,))
sys.exit(1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment