summaryrefslogtreecommitdiffstats
path: root/scripts/remote/threadstdio.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/remote/threadstdio.py')
-rw-r--r--scripts/remote/threadstdio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/remote/threadstdio.py b/scripts/remote/threadstdio.py
index db249892ac..d8ad71413c 100644
--- a/scripts/remote/threadstdio.py
+++ b/scripts/remote/threadstdio.py
@@ -1,11 +1,11 @@
-#!/usr/bin/python2
+#!/usr/bin/env python3
import os
import sys
import termios
import atexit
from threading import Thread
-from Queue import Queue, Empty
+from queue import Queue, Empty
class ConsoleInput(Thread):
def __init__(self, queue, exit='\x14'):