1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Update helpers.py

Ignore partially synced files from BTSync 2.0 Alpha
This commit is contained in:
Tawmmm 2015-01-25 16:49:46 +00:00
parent 91cb8d885c
commit 2f9362c74c

View File

@ -127,7 +127,7 @@ def replaceExtension(filename, newExt):
def isSyncFile(filename):
extension = filename.rpartition(".")[2].lower()
if extension == '!sync' or extension == 'lftp-pget-status' or extension == 'part':
if extension == '!sync' or extension == 'lftp-pget-status' or extension == 'part' or extension == 'bts':
return True
else:
return False