Remove unnecessary str() call

This commit is contained in:
Florian Bruhin 2017-11-14 06:19:42 +01:00
parent 4845180689
commit 1203be2a44

View File

@ -397,7 +397,7 @@ def version():
lines += [
'',
'Uptime: {}'.format(str(_uptime()))
'Uptime: {}'.format(_uptime()),
]
return '\n'.join(lines)