diff hgsubversion/svnrepo.py @ 1532:ae01b360320b

svnrepo: wrap too-wide abort message
author Augie Fackler <raf@durin42.com>
date Wed, 25 Oct 2017 22:10:22 -0400
parents aec176db232c
children ed7c66b8cea6
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'])