We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d96f7e commit c9e4a97Copy full SHA for c9e4a97
2 files changed
mapillary_tools/commands/__main__.py
@@ -175,6 +175,10 @@ def main():
175
log_exception(ex)
176
sys.exit(ex.exit_code)
177
178
+ except KeyboardInterrupt:
179
+ LOG.info("Interrupted by user...")
180
+ sys.exit(130)
181
+
182
183
if __name__ == "__main__":
184
main()
mapillary_tools/upload.py
@@ -121,9 +121,6 @@ def upload(
121
_api_logging_failed(_summarize(stats), ex, dry_run=dry_run)
122
raise ex
123
124
- except KeyboardInterrupt:
125
- LOG.info("Upload interrupted by user...")
126
-
127
else:
128
_api_logging_finished(_summarize(stats), dry_run=dry_run)
129
0 commit comments