From b0c8ade2419698c5db319564275afdadb6886e45 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Tue, 1 Dec 2020 14:33:37 +0100 Subject: [PATCH] code style --- src/documents/signals/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 9bb022e3f..6df142dc4 100755 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -278,7 +278,7 @@ def update_filename_and_move_files(sender, instance, **kwargs): try: os.rename(new_source_path, old_source_path) os.rename(new_archive_path, old_archive_path) - except: + except Exception as e: # This is fine, since: # A: if we managed to move source from A to B, we will also manage # to move it from B to A. If not, we have a serious issue