changeset 9259:19a4b8fd5c48

graphlog: wrap docstrings at 70 characters
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Jul 2009 01:46:28 +0200
parents 1aeb22492b25
children b2f37dbc5952
files hgext/graphlog.py
diffstat 1 files changed, 10 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/graphlog.py	Sun Jul 26 01:46:02 2009 +0200
+++ b/hgext/graphlog.py	Sun Jul 26 01:46:28 2009 +0200
@@ -8,8 +8,8 @@
 '''command to view revision graphs from a shell
 
 This extension adds a --graph option to the incoming, outgoing and log
-commands. When this options is given, an ASCII representation of the revision
-graph is also shown.
+commands. When this options is given, an ASCII representation of the
+revision graph is also shown.
 '''
 
 import os, sys
@@ -238,10 +238,11 @@
 def graphlog(ui, repo, path=None, **opts):
     """show revision history alongside an ASCII revision graph
 
-    Print a revision history alongside a revision graph drawn with ASCII
-    characters.
+    Print a revision history alongside a revision graph drawn with
+    ASCII characters.
 
-    Nodes printed as an @ character are parents of the working directory.
+    Nodes printed as an @ character are parents of the working
+    directory.
     """
 
     check_unsupported_flags(opts)
@@ -299,10 +300,11 @@
 def gincoming(ui, repo, source="default", **opts):
     """show the incoming changesets alongside an ASCII revision graph
 
-    Print the incoming changesets alongside a revision graph drawn with ASCII
-    characters.
+    Print the incoming changesets alongside a revision graph drawn with
+    ASCII characters.
 
-    Nodes printed as an @ character are parents of the working directory.
+    Nodes printed as an @ character are parents of the working
+    directory.
     """
 
     check_unsupported_flags(opts)