# HG changeset patch # User Augie Fackler # Date 1508983822 14400 # Node ID ae01b360320bbb60d1f09968c47960d0e302a6a2 # Parent fb06529234353a2a056dd0d2f045c74415b357e1 svnrepo: wrap too-wide abort message diff --git a/hgsubversion/svnrepo.py b/hgsubversion/svnrepo.py --- 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'])