Mercurial > hgsubversion
changeset 1353:63a29df4f661
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.
author | Sean Farley <sean@farley.io> |
---|---|
date | Tue, 29 Sep 2015 11:00:39 -0700 |
parents | 30193fdd5da4 |
children | b803ef977748 |
files | hgsubversion/svnwrap/subvertpy_wrapper.py |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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.