aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_baseexception.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_baseexception.py')
-rw-r--r--Lib/test/test_baseexception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_baseexception.py b/Lib/test/test_baseexception.py
index c055ee3d83c..c32468269a7 100644
--- a/Lib/test/test_baseexception.py
+++ b/Lib/test/test_baseexception.py
@@ -163,7 +163,7 @@ class UsageTests(unittest.TestCase):
self.raise_fails("spam")
def test_catch_non_BaseException(self):
- # Tryinng to catch an object that does not inherit from BaseException
+ # Trying to catch an object that does not inherit from BaseException
# is not allowed.
class NonBaseException(object):
pass