Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: git_rebase_update.py

Issue 955993006: Handle KeyboardInterrupt consistently in python scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: git_rebase_update.py
diff --git a/git_rebase_update.py b/git_rebase_update.py
index a61e53a3ab5b5b94e482e0eef9e71fd82ad9f2c6..3924cadaa489a467aa99ede04b0815ea2616e8dc 100755
--- a/git_rebase_update.py
+++ b/git_rebase_update.py
@@ -187,7 +187,7 @@ def rebase_branch(branch, parent, start_hash):
return True
-def main(args=()):
+def main(args=None):
parser = argparse.ArgumentParser()
parser.add_argument('--verbose', '-v', action='store_true')
parser.add_argument('--no_fetch', '--no-fetch', '-n',
@@ -270,4 +270,8 @@ def main(args=()):
if __name__ == '__main__': # pragma: no cover
- sys.exit(main(sys.argv[1:]))
+ try:
+ sys.exit(main())
+ except KeyboardInterrupt:
+ print 'interrupted'
+ sys.exit(1)

Powered by Google App Engine
This is Rietveld 408576698