projects
/
software
/
python-on-guile.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Small improvements to the writer
[software/python-on-guile.git]
/
modules
/
language
/
python
/
exceptions.scm
diff --git
a/modules/language/python/exceptions.scm
b/modules/language/python/exceptions.scm
index 57690aa18dd3f364e367ca6b237837fcd5b753d6..52ce80781548777a0e77c168272c9c44c8bc1167 100644
(file)
--- a/
modules/language/python/exceptions.scm
+++ b/
modules/language/python/exceptions.scm
@@
-22,9
+22,9
@@
(lambda (self . l)
(define port (if (pair? l) (car l) #f))
(aif it (ref self 'str)
- (format port "
~s: ~a
"
+ (format port "
<~s: ~a>
"
(ref self '__name__) it)
- (format port "
~s
"
+ (format port "
<~s>
"
(ref self '__name__))))))