removed unnecessary after return
This commit is contained in:
parent
1a14d5218b
commit
1967cd7357
|
@ -86,8 +86,7 @@ def formatTimeTahoeStyle(self, when):
|
||||||
d = datetime.datetime.utcfromtimestamp(when)
|
d = datetime.datetime.utcfromtimestamp(when)
|
||||||
if d.microsecond:
|
if d.microsecond:
|
||||||
return d.isoformat(" ")[:-3]+"Z"
|
return d.isoformat(" ")[:-3]+"Z"
|
||||||
else:
|
return d.isoformat(" ") + ".000Z"
|
||||||
return d.isoformat(" ") + ".000Z"
|
|
||||||
|
|
||||||
PRIV_README = """
|
PRIV_README = """
|
||||||
This directory contains files which contain private data for the Tahoe node,
|
This directory contains files which contain private data for the Tahoe node,
|
||||||
|
|
Loading…
Reference in New Issue