Fix regex folder matching. Fixes #128

This commit is contained in:
Patrick Ulbrich
2016-08-04 18:25:33 +02:00
parent e113012e1d
commit 574e350da2

View File

@@ -107,7 +107,7 @@ class Account:
conn.logout()
for d in data:
match = re.match('.+\s+("."|"?NIL"?)\s+"?([^".]+)"?$', d)
match = re.match('.+\s+("."|"?NIL"?)\s+"?([^"]+)"?$', d)
if match == None:
logging.warning("Folder format not supported.")