removed unnecessary after return

This commit is contained in:
tpltnt 2018-03-01 20:50:22 +01:00
parent 1a14d5218b
commit 1967cd7357

View File

@ -86,8 +86,7 @@ def formatTimeTahoeStyle(self, when):
d = datetime.datetime.utcfromtimestamp(when)
if d.microsecond:
return d.isoformat(" ")[:-3]+"Z"
else:
return d.isoformat(" ") + ".000Z"
return d.isoformat(" ") + ".000Z"
PRIV_README = """
This directory contains files which contain private data for the Tahoe node,