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
1 changed files with 1 additions and 1 deletions

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