summaryrefslogtreecommitdiff
path: root/src/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.py')
-rw-r--r--src/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.py b/src/common.py
index dce4b382..061c9d84 100644
--- a/src/common.py
+++ b/src/common.py
@@ -57,7 +57,7 @@ def debug(string):
Useful since debuging cannot be displayed on screen because it's
a CLI software
"""
- fdes = open("debug", 'a')
+ fdes = open("/tmp/debug", 'a')
try:
fdes.write(string)
except: