# HG changeset patch
# User Sean Farley <sean@farley.io>
# Date 1443549639 25200
# Node ID 63a29df4f6611e7325cd3af40a5edfe862bb5aa2
# Parent  30193fdd5da4ef5ec218a4b782347823a4f575ac
subvertpy_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/subvertpy_wrapper.py b/hgsubversion/svnwrap/subvertpy_wrapper.py
--- a/hgsubversion/svnwrap/subvertpy_wrapper.py
+++ b/hgsubversion/svnwrap/subvertpy_wrapper.py
@@ -187,7 +187,7 @@ class SubversionRepo(object):
     to ensure that the API is the same as for the SWIG wrapper.
     """
     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]
@@ -211,9 +211,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.