# HG changeset patch # User Sean Farley # Date 1443549667 25200 # Node ID b803ef9777486ae448bca08168164a83873438d2 # Parent 63a29df4f6611e7325cd3af40a5edfe862bb5aa2 svn_swig_wrapper: remove meta attribute Apparently, I used this in a previous attempt to implement filtering out branches but this got left over in a refactor. diff --git a/hgsubversion/svnwrap/svn_swig_wrapper.py b/hgsubversion/svnwrap/svn_swig_wrapper.py --- a/hgsubversion/svnwrap/svn_swig_wrapper.py +++ b/hgsubversion/svnwrap/svn_swig_wrapper.py @@ -206,7 +206,7 @@ class SubversionRepo(object): It uses the SWIG Python bindings, see above for requirements. """ def __init__(self, url='', username='', password='', head=None, - password_stores=None, meta=None): + password_stores=None): parsed = common.parse_url(url, username, password) # --username and --password override URL credentials self.username = parsed[0] @@ -232,9 +232,6 @@ class SubversionRepo(object): self.hasdiff3 = True self.autoprops_config = common.AutoPropsConfig() - # store the svn meta object for use with branch skipping - self.meta = meta - def init_ra_and_client(self): """Initializes the RA and client layers, because sometimes getting unified diffs runs the remote server out of open files.