diff options
| author | Scott Gasch <[email protected]> | 2021-07-29 09:11:05 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-29 09:11:05 -0700 |
| commit | a08ca309cb5bd7971210a9247a38c9bbe376a6e6 (patch) | |
| tree | 879e0ee5403d5ede0658db5ed6e4705c86208f9c /decorator_utils.py | |
| parent | 4faa994d32223c8d560d9dad0ca90a3f7eb10d6a (diff) | |
Lockfile custom command, fixup minor things.
Diffstat (limited to 'decorator_utils.py')
| -rw-r--r-- | decorator_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decorator_utils.py b/decorator_utils.py index 0d5b3e3..76faec6 100644 --- a/decorator_utils.py +++ b/decorator_utils.py @@ -340,7 +340,7 @@ def _target(queue, function, *args, **kwargs): """ try: queue.put((True, function(*args, **kwargs))) - except: + except Exception: queue.put((False, sys.exc_info()[1])) |
