cull_idle_servers.py: Remove f-string for py3.4 compatibility

This commit is contained in:
Richard Darst
2018-04-26 15:05:49 +03:00
parent 6f1ba77608
commit 9cd880fb35

View File

@@ -75,7 +75,7 @@ def format_td(td):
seconds = seconds % 3600 seconds = seconds % 3600
m = seconds // 60 m = seconds // 60
seconds = seconds % 60 seconds = seconds % 60
return f"{h:02}:{m:02}:{seconds:02}" return "{h:02}:{m:02}:{seconds:02}".format(h=h, m=m, seconds=seconds)
@coroutine @coroutine