Skip to content

Commit

Permalink
docker-ce: fix exception raised when print exception
Browse files Browse the repository at this point in the history
  • Loading branch information
shankerwangmiao committed Apr 2, 2024
1 parent 32ea323 commit 332cb42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-ce.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def recursive_get_filelist(self, base_url, filter_meta=False):
return
except Exception as e:
print("Panic: failed to get file list")
traceback.print_exc(e)
traceback.print_exc()
sys.exit(1)
if not r.ok:
return
Expand Down

0 comments on commit 332cb42

Please sign in to comment.