summaryrefslogtreecommitdiff
path: root/nose/config.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-06-05 01:34:32 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-06-05 01:34:32 +0000
commit8fe002b4050d7e508bafe5664987a3b67d0dc036 (patch)
treec67f618bf4a30c225b661a7dff0b331b720b5a3a /nose/config.py
parent17dbccf4e3ffde7230af46c48ea54f6d071f994b (diff)
downloadnose-8fe002b4050d7e508bafe5664987a3b67d0dc036.tar.gz
Fixed #48 (verbose/verbosity doc issue)
Diffstat (limited to 'nose/config.py')
-rw-r--r--nose/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nose/config.py b/nose/config.py
index 74bc533..0241e79 100644
--- a/nose/config.py
+++ b/nose/config.py
@@ -53,7 +53,7 @@ class Config(object):
self.stopOnError = env.get('NOSE_STOP', False)
self.stream = sys.stderr
self.testNames = ()
- self.verbosity = int(env.get('NOSE_VERBOSE', 1))
+ self.verbosity = int(env.get('NOSE_VERBOSE', 0))
self.where = ()
self.workingDir = None
"""
@@ -274,7 +274,7 @@ class Config(object):
parser.add_option(
"--verbosity", action="store", dest="verbosity",
type="int", help="Set verbosity; --verbosity=2 is "
- "the same as -vv")
+ "the same as -v")
parser.add_option(
"-q", "--quiet", action="store_const", const=0, dest="verbosity")
parser.add_option(