[cig-commits] commit: Keep lines at less than 80 characters.

Mercurial hg at geodynamics.org
Mon Nov 24 11:27:06 PST 2008


changeset:   51:d3d1b4a1a90d
user:        Simon Law <simon at akoha.org>
date:        Tue Jul 10 10:20:14 2007 -0400
files:       forest.py
description:
Keep lines at less than 80 characters.


diff -r 904f45baaf83 -r d3d1b4a1a90d forest.py
--- a/forest.py	Mon Jul 09 18:24:55 2007 -0400
+++ b/forest.py	Tue Jul 10 10:20:14 2007 -0400
@@ -131,7 +131,9 @@ def _sshrepo_forests(self, walkhg):
     """
 
     if 'forests' not in self.capabilities:
-        raise util.Abort(_("Remote forests cannot be cloned because the other repository doesn't support the forest extension."))
+        raise util.Abort(_("Remote forests cannot be cloned because the "
+                           "other repository doesn't support the forest "
+                           "extension."))
     data = self.call("forests", walkhg=("", "True")[walkhg])
     return data.splitlines()
 
@@ -177,7 +179,9 @@ def _httprepo_forests(self, walkhg):
     """
 
     if 'forests' not in self.capabilities:
-        raise util.Abort(_("Remote forests cannot be cloned because the other repository doesn't support the forest extension."))
+        raise util.Abort(_("Remote forests cannot be cloned because the "
+                           "other repository doesn't support the forest "
+                           "extension."))
     data = self.do_read("forests", walkhg=("", "True")[walkhg])
     return data.splitlines()
 



More information about the CIG-COMMITS mailing list