changeset 1354:b803ef977748

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.
author Sean Farley <sean@farley.io>
date Tue, 29 Sep 2015 11:01:07 -0700
parents 63a29df4f661
children 79e319fe767d
files hgsubversion/svnwrap/svn_swig_wrapper.py
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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.