diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
commit | 70a6b49821a3226f55e9716f32d802d06640cb89 (patch) | |
tree | 3c8ca10c1fa09e025bd266cf855a00d7d96c55aa /Lib/ihooks.py | |
parent | ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e (diff) | |
download | cpython-70a6b49821a3226f55e9716f32d802d06640cb89.zip cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.gz cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.bz2 |
Replace backticks with repr() or "%r"
From SF patch #852334.
Diffstat (limited to 'Lib/ihooks.py')
-rw-r--r-- | Lib/ihooks.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/ihooks.py b/Lib/ihooks.py index 19faac9..936a950 100644 --- a/Lib/ihooks.py +++ b/Lib/ihooks.py @@ -273,8 +273,8 @@ class ModuleLoader(BasicModuleLoader): elif type == PKG_DIRECTORY: m = self.hooks.load_package(name, filename, file) else: - raise ImportError, "Unrecognized module type (%s) for %s" % \ - (`type`, name) + raise ImportError, "Unrecognized module type (%r) for %s" % \ + (type, name) finally: if file: file.close() m.__file__ = filename @@ -299,8 +299,8 @@ class FancyModuleLoader(ModuleLoader): if inittype not in (PY_COMPILED, PY_SOURCE): if initfile: initfile.close() raise ImportError, \ - "Bad type (%s) for __init__ module in package %s" % ( - `inittype`, name) + "Bad type (%r) for __init__ module in package %s" % ( + inittype, name) path = [filename] file = initfile realfilename = initfilename |