diff options
author | jquast <contact@jeffquast.com> | 2013-09-22 22:06:29 -0700 |
---|---|---|
committer | jquast <contact@jeffquast.com> | 2013-09-22 22:06:29 -0700 |
commit | 635570e857cad37bb6f21f2154d0d2656ab5ad9f (patch) | |
tree | 70f395824b2c84987f54c5c929874109e45535f7 | |
parent | 96ec218be92a56a9c41ecfcf67c979a82e38d48a (diff) | |
download | pexpect-git-635570e857cad37bb6f21f2154d0d2656ab5ad9f.tar.gz |
missing import fix for sys
-rwxr-xr-x | tests/test_ctrl_chars.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_ctrl_chars.py b/tests/test_ctrl_chars.py index c2f040b..24f1cb0 100755 --- a/tests/test_ctrl_chars.py +++ b/tests/test_ctrl_chars.py @@ -22,6 +22,7 @@ import pexpect import unittest import PexpectTestCase import time +import sys class TestCtrlChars(PexpectTestCase.PexpectTestCase): |