summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/parenmatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/parenmatch.py')
-rw-r--r--Lib/idlelib/parenmatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/parenmatch.py b/Lib/idlelib/parenmatch.py
index 983ca20..3fd7aad 100644
--- a/Lib/idlelib/parenmatch.py
+++ b/Lib/idlelib/parenmatch.py
@@ -179,5 +179,5 @@ ParenMatch.reload()
if __name__ == '__main__':
- import unittest
- unittest.main('idlelib.idle_test.test_parenmatch', verbosity=2)
+ from unittest import main
+ main('idlelib.idle_test.test_parenmatch', verbosity=2)