Mercurial > hg-stable
diff mercurial/statichttprepo.py @ 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 | b9026ba002f6 |
children | 55ef79031009 |
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):