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

Unified Diff: gn.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: gn.py
diff --git a/gn.py b/gn.py
index 7837dbddcce75fa14a49a17cc8c9a28da40baa3a..7977e9c503641b3cd8c56c68c831d1b1435ad73e 100755
--- a/gn.py
+++ b/gn.py
@@ -34,4 +34,8 @@ def main(args):
if __name__ == '__main__':
- sys.exit(main(sys.argv))
+ try:
+ sys.exit(main(sys.argv))
+ except KeyboardInterrupt:
+ print 'interrupted'
+ sys.exit(1)
« git_upstream_diff.py ('K') | « git_upstream_diff.py ('k') | my_activity.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698