From 962d37ca8089fcebc18f311ba77b245d51c39250 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 9 Apr 2011 01:00:03 +0200 Subject: [PATCH] pyximport debug output fix --- pyximport/pyximport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyximport/pyximport.py b/pyximport/pyximport.py index ac509a46..430dfff2 100644 --- a/pyximport/pyximport.py +++ b/pyximport/pyximport.py @@ -269,7 +269,7 @@ class PyImporter(PyxImporter): # prevent infinite recursion return None if DEBUG_IMPORT: - print("trying import of module", fullname) + print("trying import of module '%s'" % fullname) if fullname in self.uncompilable_modules: path, last_modified = self.uncompilable_modules[fullname] try: -- 2.26.2