diff options
author | Guido van Rossum <guido@python.org> | 1997-11-11 17:18:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-11-11 17:18:48 (GMT) |
commit | 6592b3c01e03ae8a76d5326e9ee9dc388ffb332c (patch) | |
tree | 2333c8d7a2b551ac609e57837195ff27e6a3a15d | |
parent | ca2f69cb965e98c811cf4d761e69f15cf77f6fdb (diff) | |
download | cpython-6592b3c01e03ae8a76d5326e9ee9dc388ffb332c.zip cpython-6592b3c01e03ae8a76d5326e9ee9dc388ffb332c.tar.gz cpython-6592b3c01e03ae8a76d5326e9ee9dc388ffb332c.tar.bz2 |
Use a %s format for the exit status -- through the magical workings of
the aptly named MagicDict class, the value is a string, not a number,
by the time it is printed...
-rw-r--r-- | Tools/faqwiz/faqconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/faqwiz/faqconf.py b/Tools/faqwiz/faqconf.py index a0dad2f..81d933f 100644 --- a/Tools/faqwiz/faqconf.py +++ b/Tools/faqwiz/faqconf.py @@ -450,7 +450,7 @@ Your changes have been committed. """ COMMITFAILED = """ -Exit status %(sts)04x. +Exit status %(sts)s. """ # Add/Delete |