summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_optparse.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-06-26 03:27:32 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-06-26 03:27:32 (GMT)
commit04a3439ba656d99312789e92a9c17c09a5a4b4b2 (patch)
tree598573a1020845dfaa0e1970bc5e191212bdd0e6 /Lib/test/test_optparse.py
parentcaf5db79240eea69df51e9d1f969dfd52400f3fc (diff)
downloadcpython-04a3439ba656d99312789e92a9c17c09a5a4b4b2.zip
cpython-04a3439ba656d99312789e92a9c17c09a5a4b4b2.tar.gz
cpython-04a3439ba656d99312789e92a9c17c09a5a4b4b2.tar.bz2
Fix indentation in recently added test.
Diffstat (limited to 'Lib/test/test_optparse.py')
-rw-r--r--Lib/test/test_optparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py
index 3cc1426..ab5483b 100644
--- a/Lib/test/test_optparse.py
+++ b/Lib/test/test_optparse.py
@@ -767,7 +767,7 @@ class TestStandard(BaseTest):
def test_combined_single_invalid_option(self):
self.parser.add_option("-t", action="store_true")
self.assertParseFail(["-test"],
- "no such option: -e")
+ "no such option: -e")
class TestBool(BaseTest):
def setUp(self):