##// END OF EJS Templates
graphlog: wrap docstrings at 70 characters
Martin Geisler -
r9259:19a4b8fd default
parent child Browse files
Show More
@@ -8,8 +8,8 b''
8 '''command to view revision graphs from a shell
8 '''command to view revision graphs from a shell
9
9
10 This extension adds a --graph option to the incoming, outgoing and log
10 This extension adds a --graph option to the incoming, outgoing and log
11 commands. When this options is given, an ASCII representation of the revision
11 commands. When this options is given, an ASCII representation of the
12 graph is also shown.
12 revision graph is also shown.
13 '''
13 '''
14
14
15 import os, sys
15 import os, sys
@@ -238,10 +238,11 b' def check_unsupported_flags(opts):'
238 def graphlog(ui, repo, path=None, **opts):
238 def graphlog(ui, repo, path=None, **opts):
239 """show revision history alongside an ASCII revision graph
239 """show revision history alongside an ASCII revision graph
240
240
241 Print a revision history alongside a revision graph drawn with ASCII
241 Print a revision history alongside a revision graph drawn with
242 characters.
242 ASCII characters.
243
243
244 Nodes printed as an @ character are parents of the working directory.
244 Nodes printed as an @ character are parents of the working
245 directory.
245 """
246 """
246
247
247 check_unsupported_flags(opts)
248 check_unsupported_flags(opts)
@@ -299,10 +300,11 b' def goutgoing(ui, repo, dest=None, **opt'
299 def gincoming(ui, repo, source="default", **opts):
300 def gincoming(ui, repo, source="default", **opts):
300 """show the incoming changesets alongside an ASCII revision graph
301 """show the incoming changesets alongside an ASCII revision graph
301
302
302 Print the incoming changesets alongside a revision graph drawn with ASCII
303 Print the incoming changesets alongside a revision graph drawn with
303 characters.
304 ASCII characters.
304
305
305 Nodes printed as an @ character are parents of the working directory.
306 Nodes printed as an @ character are parents of the working
307 directory.
306 """
308 """
307
309
308 check_unsupported_flags(opts)
310 check_unsupported_flags(opts)
General Comments 0
You need to be logged in to leave comments. Login now