# HG changeset patch # User Martin Geisler # Date 2009-07-26 00:01:19 # Node ID 4b8b0c124b99b70f82f61a6bda45e2360e04b2dd # Parent 784899697571e4154f4b6b40da6798a2d204fa52 share: wrap docstrings at 70 characters diff --git a/hgext/share.py b/hgext/share.py --- a/hgext/share.py +++ b/hgext/share.py @@ -11,11 +11,11 @@ from mercurial import hg, commands 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)