1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-05 17:05:03 -05:00

Modified touchfile() to detect ENOSYS and EACCES.

To better distinguish between file permissions and not implemented.
This commit is contained in:
Alexandre Beloin 2015-02-10 22:52:49 -05:00
parent c62d8f2c79
commit fbdd48aed8

View File

@ -35,6 +35,7 @@ import uuid
import base64
import zipfile
import datetime
import errno
import sickbeard
import subliminal
@ -1108,8 +1109,13 @@ def touchFile(fname, atime=None):
with file(fname, 'a'):
os.utime(fname, (atime, atime))
return True
except:
logger.log(u"File air date stamping not available on your OS", logger.DEBUG)
except Exception as e:
if e.errno == errno.ENOSYS:
logger.log(u"File air date stamping not available on your OS", logger.DEBUG)
elif e.errno == errno.EACCES:
logger.log(u"File air date stamping failed(Permission denied). Check permissions for file: {0}".format(fname), logger.ERROR)
else:
logger.log(u"File air date stamping failed. The error is: {0} and the message is: {1}.".format(e.errno, e.strerror), logger.ERROR)
pass
return False