storage: remove broken default parameter from isodate()

With that syntax, the default timestamp would have been from the time of
the function's definition (not invocation). But all callers are passing
an explicit timestamp anyway.
This commit is contained in:
Rusty Bird 2018-09-11 23:50:20 +00:00
父節點 44ca78523f
當前提交 f0ee73e63f
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 469D78F47AAF2ADF

查看文件

@ -874,7 +874,7 @@ def driver_parameters(name):
return [p for p in params if p not in ignored_params]
def isodate(seconds=time.time()):
def isodate(seconds):
''' Helper method which returns an iso date '''
return datetime.utcfromtimestamp(seconds).isoformat("T")