Browse Source

Catch filetime error. fix #741

pull/770/head
Ruud 13 years ago
parent
commit
bdfb073bca
  1. 10
      couchpotato/core/plugins/scanner/main.py

10
couchpotato/core/plugins/scanner/main.py

@ -303,7 +303,15 @@ class Scanner(Plugin):
break
if file_too_new:
log.info('Files seem to be still unpacking or just unpacked (created on %s), ignoring for now: %s', (time.ctime(file_time[0]), identifier))
try:
time_string = time.ctime(file_time[0])
except:
try:
time_string = time.ctime(file_time[1])
except:
time_string = 'unknown'
log.info('Files seem to be still unpacking or just unpacked (created on %s), ignoring for now: %s', (time_string, identifier))
# Delete the unsorted list
del group['unsorted_files']

Loading…
Cancel
Save