Mercurial > public > mercurial-scm > hg
diff mercurial/httprepo.py @ 6313:c5580db9c3aa
remoterepo: no longer needed
All users already use repo.local() to test for local, which is false
in the repository base class. statichttprepository never derived from
this class anyway.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 20 Mar 2008 11:12:35 -0500 |
parents | 9cd6292abfdf |
children | dbb00e91c327 |
line wrap: on
line diff
--- a/mercurial/httprepo.py Thu Mar 20 11:12:35 2008 -0500 +++ b/mercurial/httprepo.py Thu Mar 20 11:12:35 2008 -0500 @@ -7,7 +7,6 @@ # of the GNU General Public License, incorporated herein by reference. from node import bin, hex -from remoterepo import remoterepository from i18n import _ import repo, os, urllib, urllib2, urlparse, zlib, util, httplib import errno, keepalive, socket, changegroup @@ -181,7 +180,7 @@ l[i] = '%%%02X' % ord(c) return ''.join(l) -class httprepository(remoterepository): +class httprepository(repo.repository): def __init__(self, ui, path): self.path = path self.caps = None