summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-03-05 22:35:29 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-03-05 22:35:29 (GMT)
commit7e28df94ece2a0b766d5eddaf691f0428d8da2b4 (patch)
treebb9d1554d3767e1570cea582a18df1174d36e270 /Lib/unittest
parentcaa01f861cc811f273f8eeff92f32daf7efeeb65 (diff)
downloadcpython-7e28df94ece2a0b766d5eddaf691f0428d8da2b4.zip
cpython-7e28df94ece2a0b766d5eddaf691f0428d8da2b4.tar.gz
cpython-7e28df94ece2a0b766d5eddaf691f0428d8da2b4.tar.bz2
unittest: Trivial typo fix.
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/main.py b/Lib/unittest/main.py
index 180df86..486d39f 100644
--- a/Lib/unittest/main.py
+++ b/Lib/unittest/main.py
@@ -74,7 +74,7 @@ class TestProgram(object):
self.verbosity = verbosity
self.buffer = buffer
if warnings is None and not sys.warnoptions:
- # even if DreprecationWarnings are ignored by default
+ # even if DeprecationWarnings are ignored by default
# print them anyway unless other warnings settings are
# specified by the warnings arg or the -W python flag
self.warnings = 'default'