summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-10-24 16:12:57 -0400
committerJohn Szakmeister <john@szakmeister.net>2014-10-24 16:12:57 -0400
commit23a3ca8cc1d4c72eec82b421701d248d10d70d0d (patch)
tree7c7fc8d1bf60b20fdeb3fd4ceedb931e38673c5b
parent08d134270b035dac3310cd877bb0fe9ab678303a (diff)
parent50f18fc88dde23e5429c8729f9ca258fed0217cd (diff)
downloadnose-23a3ca8cc1d4c72eec82b421701d248d10d70d0d.tar.gz
Merge pull request #832 from BME-IK/fix-w-error-msg
Show ValueError about -w path name in quotes
-rw-r--r--nose/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nose/config.py b/nose/config.py
index 4214c2d..125eb55 100644
--- a/nose/config.py
+++ b/nose/config.py
@@ -416,7 +416,7 @@ class Config(object):
if not self.workingDir:
abs_path = absdir(path)
if abs_path is None:
- raise ValueError("Working directory %s not found, or "
+ raise ValueError("Working directory '%s' not found, or "
"not a directory" % path)
log.info("Set working dir to %s", abs_path)
self.workingDir = abs_path