diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-06-04 11:06:35 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-06-04 11:06:35 +0200 |
commit | 30463ba2ea487bfeedc97d63e165ab77700b8b64 (patch) | |
tree | dd11f1aabf4d923a2d7b30cb3496a870a5867cf3 | |
parent | e56462f9eb26ea4e959fe77175c8a124a6d6b8af (diff) |
spec: Log to python-log.txt.
* modules/language/python/spec.scm (trace): Write to "python-log.txt"
instead of "log.txt".
-rw-r--r-- | modules/language/python/spec.scm | 2 |
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)))) |