From 20da3d2b46509c8e21e75414c9014b969449e579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 7 Aug 2018 09:19:33 +0200 Subject: [PATCH] rundaca: fix syntax error --- tools/rundaca2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rundaca2.py b/tools/rundaca2.py index d73046bc1..d5a11d65d 100644 --- a/tools/rundaca2.py +++ b/tools/rundaca2.py @@ -49,7 +49,7 @@ def upload(localfolder, webfolder, password): def getDate(filename): for line in open(filename): - if line.startswith('DATE ') + if line.startswith('DATE '): return line[5:] return None