Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/util_win32.py @ 6216:a88259018f79
Add missing import of sys
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | e75aab656f46 |
children | 892806b3fc0f |
comparison
equal
deleted
inserted
replaced
6215:cb0434795fcd | 6216:a88259018f79 |
---|---|
11 # available, import of this module will fail, and generic code will be | 11 # available, import of this module will fail, and generic code will be |
12 # used. | 12 # used. |
13 | 13 |
14 import win32api | 14 import win32api |
15 | 15 |
16 import errno, os, pywintypes, win32con, win32file, win32process | 16 import errno, os, sys, pywintypes, win32con, win32file, win32process |
17 import cStringIO, winerror | 17 import cStringIO, winerror |
18 import osutil | 18 import osutil |
19 from win32com.shell import shell,shellcon | 19 from win32com.shell import shell,shellcon |
20 | 20 |
21 class WinError: | 21 class WinError: |