From: R. David Murray Date: Sat, 26 Jun 2010 03:27:32 +0000 (+0000) Subject: Fix indentation in recently added test. X-Git-Tag: v2.7~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04a3439ba656d99312789e92a9c17c09a5a4b4b2;p=thirdparty%2FPython%2Fcpython.git Fix indentation in recently added test. --- diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py index 3cc142627d71..ab5483b5ebb3 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):