Mercurial > hg
changeset 9075:03c2462724ac
share: wrapped docstrings at 78 characters
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Tue, 07 Jul 2009 23:54:42 +0200 |
parents | b4f259c1667a |
children | 3f505d4bfee0 |
files | hgext/share.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/share.py Tue Jul 07 23:54:42 2009 +0200 +++ b/hgext/share.py Tue Jul 07 23:54:42 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)