diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/quantifi_status.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/quantifi_status.py b/python/quantifi_status.py index baa053ea..147c50bf 100644 --- a/python/quantifi_status.py +++ b/python/quantifi_status.py @@ -33,8 +33,8 @@ def run(): try: for f in QuantifiRemote._client.list_files("/OUTGOING/Status"): QuantifiRemote.process(f) - logger.info(f) - except (SSHException, OSError): + except (SSHException, OSError) as e: + logger.info(e) close_and_reconnect() time.sleep(60) QuantifiRemote.check_cache() |
