Fix string formatting argument error
This commit is contained in:
parent
2dead3bacc
commit
82e82c3e79
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ def download_decode(item, options, mak):
|
|||
try:
|
||||
os.utime(target, (item.time, item.time))
|
||||
except Exception, e:
|
||||
logger.error("Problem setting timestamp: %" % (e))
|
||||
logger.error("Problem setting timestamp: {}".format(e))
|
||||
|
||||
|
||||
def download_one(item, downloaddb, options):
|
||||
|
|
Loading…
Reference in a new issue