summaryrefslogtreecommitdiff
path: root/nose/config.py
diff options
context:
space:
mode:
authorŐry Máté <ory.mate@cloud.bme.hu>2014-08-13 11:25:22 +0200
committerŐry Máté <ory.mate@cloud.bme.hu>2014-08-13 11:25:22 +0200
commit50f18fc88dde23e5429c8729f9ca258fed0217cd (patch)
tree97327bdeb43be3040a9659f2a7b997467903c8cf /nose/config.py
parent9e9adc50699862db40a6e288719eedd45ba6ad9d (diff)
downloadnose-50f18fc88dde23e5429c8729f9ca258fed0217cd.tar.gz
Show ValueError about -w path name in quotes.
Diffstat (limited to 'nose/config.py')
-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