diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 +0000 |
commit | 582176023213a5bdaf76a19977f7bb6d508694e9 (patch) | |
tree | a5f480092a35a71571f1d24bcd10255e1b93e904 /Lib/idlelib/TreeWidget.py | |
parent | cdef0ac4f0dc828ee205ffa2999592f5fa6f70d3 (diff) | |
download | cpython-582176023213a5bdaf76a19977f7bb6d508694e9.tar.gz |
Replace backticks with repr() or "%r"
From SF patch #852334.
Diffstat (limited to 'Lib/idlelib/TreeWidget.py')
-rw-r--r-- | Lib/idlelib/TreeWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/TreeWidget.py b/Lib/idlelib/TreeWidget.py index 824bdca1fb..1c9eb2ef14 100644 --- a/Lib/idlelib/TreeWidget.py +++ b/Lib/idlelib/TreeWidget.py @@ -31,7 +31,7 @@ except NameError: if os.path.isdir(_icondir): ICONDIR = _icondir elif not os.path.isdir(ICONDIR): - raise RuntimeError, "can't find icon directory (%s)" % `ICONDIR` + raise RuntimeError, "can't find icon directory (%r)" % (ICONDIR,) def listicons(icondir=ICONDIR): """Utility to display the available icons.""" |