share: wrap docstrings at 70 characters
authorMartin Geisler <mg@lazybytes.net>
Sun, 26 Jul 2009 02:01:19 +0200
changeset 9273 4b8b0c124b99
parent 9272 784899697571
child 9274 4e61abab5f4b
share: wrap docstrings at 70 characters
hgext/share.py
--- a/hgext/share.py	Sun Jul 26 02:00:58 2009 +0200
+++ b/hgext/share.py	Sun Jul 26 02:01:19 2009 +0200
@@ -11,11 +11,11 @@
 def share(ui, source, dest=None, noupdate=False):
     """create a new shared repository (experimental)
 
-    Initialize a new repository and working directory that shares its history
-    with another repository.
+    Initialize a new repository and working directory that shares its
+    history with another repository.
 
-    NOTE: actions that change history such as rollback or moving the source
-    may confuse sharers.
+    NOTE: actions that change history such as rollback or moving the
+    source may confuse sharers.
     """
 
     return hg.share(ui, source, dest, not noupdate)