diff options
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 32f627c6..f3251553 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -370,8 +370,8 @@ def query_udd(query): 'Please look for a previous error for more information.') log.error('Failing nicely anyway, returning an empty response.') return [] - cursor = conn_udd.cursor() try: + cursor = conn_udd.cursor() cursor.execute(query) except: log.error('The UDD server encountered a issue while executing the ' + |