chiark / gitweb /
tiocnotty: switch to python3
[bin.git] / tiocnotty
index 1bf635e7e9d0dde24f8bfe7f4925a5cfb401f4b0..715f8ee5a4905ee3804c3f290fff9d65954a4a9b 100755 (executable)
--- a/tiocnotty
+++ b/tiocnotty
@@ -1,14 +1,13 @@
-#! /usr/bin/python
+#! /usr/bin/python3
 
-import sys
-import os
 import fcntl
+import os
+import sys
 import termios
 
 try:
-    tty = open('/dev/tty')
-    fcntl.ioctl(tty, termios.TIOCNOTTY)
-    tty.close()
+    with open('/dev/tty') as tty:
+        fcntl.ioctl(tty, termios.TIOCNOTTY)
 except IOError:
     pass