diff -r 0292f88d3b86 -r 8e115063950d hgext/largefiles/remotestore.py --- a/hgext/largefiles/remotestore.py Sat Oct 01 16:18:51 2011 -0500 +++ b/hgext/largefiles/remotestore.py Sat Oct 01 16:39:51 2011 -0400 @@ -7,7 +7,6 @@ '''Remote largefile store; the base class for servestore''' import urllib2 -import HTTPError from mercurial import util from mercurial.i18n import _ @@ -57,7 +56,7 @@ try: length, infile = self._get(hash) - except HTTPError, e: + except urllib2.HTTPError, e: # 401s get converted to util.Aborts; everything else is fine being # turned into a StoreError raise basestore.StoreError(filename, hash, self.url, str(e))