summaryrefslogtreecommitdiff
path: root/modules/language/python
diff options
context:
space:
mode:
Diffstat (limited to 'modules/language/python')
-rw-r--r--modules/language/python/spec.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/language/python/spec.scm b/modules/language/python/spec.scm
index aa8e346..c2f15bf 100644
--- a/modules/language/python/spec.scm
+++ b/modules/language/python/spec.scm
@@ -23,7 +23,7 @@
(define (trace . x)
(when *python-debug*
(let ()
- (define port (open-file "log.txt" "a"))
+ (define port (open-file "python-log.txt" "a"))
(with-output-to-port port
(lambda ()
(pretty-print x) (car (reverse x))))