changeset 18915:169030d9255e

statichttprepo: add missing import of os Found using Cython.
author Bryan O'Sullivan <bryano@fb.com>
date Fri, 12 Apr 2013 17:17:05 -0700
parents 05d5821e0dc8
children 6edb0e18b83c
files mercurial/statichttprepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/statichttprepo.py	Fri Apr 12 17:16:37 2013 -0700
+++ b/mercurial/statichttprepo.py	Fri Apr 12 17:17:05 2013 -0700
@@ -10,7 +10,7 @@
 from i18n import _
 import changelog, byterange, url, error
 import localrepo, manifest, util, scmutil, store
-import urllib, urllib2, errno
+import urllib, urllib2, errno, os
 
 class httprangereader(object):
     def __init__(self, url, opener):