summaryrefslogtreecommitdiffstats
path: root/tester/rt/console.py
diff options
context:
space:
mode:
Diffstat (limited to 'tester/rt/console.py')
-rw-r--r--tester/rt/console.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/rt/console.py b/tester/rt/console.py
index a6d3161..ca66e66 100644
--- a/tester/rt/console.py
+++ b/tester/rt/console.py
@@ -32,6 +32,8 @@
# RTEMS Testing Consoles
#
+from __future__ import print_function
+
import errno
import os
import threading
@@ -42,7 +44,7 @@ import time
#
if os.name != 'nt':
import fcntl
- import stty
+ from . import stty
else:
fcntl = None
stty = None