summaryrefslogtreecommitdiff
path: root/nose/util.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-03-23 16:22:57 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-03-23 16:22:57 +0000
commitb9b9dcadd6a1d34aac58b4d9ea5d623aab8cbe3e (patch)
tree3099499c32513224fb31b29119f5bd3242060a4c /nose/util.py
parentde463dbaa644f6b400910ff939748eb78fb6368d (diff)
downloadnose-b9b9dcadd6a1d34aac58b4d9ea5d623aab8cbe3e.tar.gz
Work on fixing bugs in context fixture handling when test names are specified
Diffstat (limited to 'nose/util.py')
-rw-r--r--nose/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nose/util.py b/nose/util.py
index 16721ba..85087e7 100644
--- a/nose/util.py
+++ b/nose/util.py
@@ -204,7 +204,7 @@ def resolve_name(name, module=None):
if module is None:
while parts_copy:
try:
- print " --> Context import %s" % name
+ print " --> util import %s" % name
module = __import__('.'.join(parts_copy))
break
except ImportError: