diff mercurial/crecord.py @ 24909:d71492ca2fdd

crecord: fix mixed imports warning
author Matt Harbison <matt_harbison@yahoo.com>
date Thu, 09 Apr 2015 23:47:07 -0400
parents a5e3634ba024
children c1f5ef76d1c2
line wrap: on
line diff
--- a/mercurial/crecord.py	Fri May 01 20:17:00 2015 -0400
+++ b/mercurial/crecord.py	Thu Apr 09 23:47:07 2015 -0400
@@ -20,7 +20,8 @@
 
 # os.name is one of: 'posix', 'nt', 'dos', 'os2', 'mac', or 'ce'
 if os.name == 'posix':
-    import curses, fcntl, termios
+    import curses
+    import fcntl, termios
 else:
     # I have no idea if wcurses works with crecord...
     try: