Remove newlines

merge-requests/30/head
Bob Mottram 2021-06-21 10:26:13 +01:00
parent 084da8d2a4
commit 2e9d1c93d9
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ def updateBlockedCache(baseDir: str,
blockedLines = fpBlocked.readlines()
blockedCache.clear()
for line in blockedLines:
blockedCache.append(line)
blockedCache.append(line.replace('\n', ''))
return currTime