Correct bug on default log file

This commit is contained in:
Nicolargo 2015-01-06 22:17:45 +01:00 committed by Alessio Sergi
parent aa9845d985
commit 97cf297ad9

View File

@ -79,6 +79,7 @@ def tempfile_name():
ret = tempfile.mkstemp(prefix='glances', suffix='.tmp', text=True)
print("Create a new log file: {}".format(ret[1]))
return ret[1]
return ret
def glances_logger():