From c3a23ef3446b0ff0e3c386c2c4d448886d257c3e Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Wed, 1 May 2019 00:28:11 +0200 Subject: [PATCH] Fixed syntax error at if test. Incorrect closing paranthese position --- transatlanticTorrentExpress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transatlanticTorrentExpress.py b/transatlanticTorrentExpress.py index de5a04f..4942872 100755 --- a/transatlanticTorrentExpress.py +++ b/transatlanticTorrentExpress.py @@ -90,7 +90,7 @@ def main(): localFiles = getFiles(localPath) # print('Local files: {}'.format(localFiles)) - if len(localFiles > 0): + if len(localFiles) > 0: logger.info('Local files found: {}'.format(localFiles)) else: logger.info('No local files found')