Remove stray extra space in message

This commit is contained in:
moneromooo 2015-01-25 18:31:22 +00:00
parent 099981b832
commit 1ad4474315
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ def TimeToString(seconds):
return "%.2f centuries" % (seconds / (3600*24*365.25 * 100))
if seconds < 3600 * 24 * 365.25 * 1000000:
return "%.2f millenia" % (seconds / (3600*24*365.25 * 100))
return " like, forever, dude"
return "like, forever, dude"
def SendJSONRPCCommand(host,port,method,params):
try: