worker: add missing import of errno
authorBryan O'Sullivan <bryano@fb.com>
Fri, 12 Apr 2013 17:16:37 -0700
changeset 18914 05d5821e0dc8
parent 18913 79580b3140cd
child 18915 169030d9255e
worker: add missing import of errno Found using Cython.
mercurial/worker.py
--- a/mercurial/worker.py	Fri Apr 12 16:01:18 2013 -0700
+++ b/mercurial/worker.py	Fri Apr 12 17:16:37 2013 -0700
@@ -6,7 +6,7 @@
 # GNU General Public License version 2 or any later version.
 
 from i18n import _
-import os, signal, sys, threading, util
+import errno, os, signal, sys, threading, util
 
 def countcpus():
     '''try to count the number of CPUs on the system'''