Mercurial > hgsubversion
changeset 1532:ae01b360320b
svnrepo: wrap too-wide abort message
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 25 Oct 2017 22:10:22 -0400 |
parents | fb0652923435 |
children | 0212c3a84ccd |
files | hgsubversion/svnrepo.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/svnrepo.py +++ b/hgsubversion/svnrepo.py @@ -133,7 +133,9 @@ class svnremoterepo(peerrepository): if path is None: path = self.ui.config('paths', 'default') if not path: - raise hgutil.Abort('no Subversion URL specified. Expect[path] default= or [path] default-push= SVN URL entries in hgrc.') + raise hgutil.Abort('no Subversion URL specified. Expect ' + '[path] default= or [path] default-push= ' + 'SVN URL entries in hgrc.') self.path = path if peerapi == 1: self._capabilities = set(['lookup', 'subversion'])