commit 5c7737033228073cff1311fc3cde11725d7df1f0 parent 1bdc4cbb2ca9a890a3a9566d3e011f0827043b2c Author: Étienne Simon <esimon@esimon.eu> Date: Fri, 18 Apr 2014 15:23:51 +0200 Fix datalog Diffstat:
M | utils/log.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/log.py b/utils/log.py @@ -7,6 +7,6 @@ def log(message): datalog_filepath=None -def datalog(*data) +def datalog(*data): with open(filepath, 'a') as file: file.write('\t'.join(data)+'\n')