mercurial/util.py
changeset 2470 fe1689273f84
parent 2448 b77a2ef61b81
child 2471 6904e1ef8ad1
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -10,11 +10,10 @@ This contains helper routines that are i
 platform-specific details from the core.
 """
 
-import os, errno
 from i18n import gettext as _
 from demandload import *
 demandload(globals(), "cStringIO errno popen2 re shutil sys tempfile")
-demandload(globals(), "threading time")
+demandload(globals(), "os threading time")
 
 class SignalInterrupt(Exception):
     """Exception raised on SIGTERM and SIGHUP."""