##// END OF EJS Templates
drawdag: use raw strings for docstrings...
Gregory Szorc -
r41683:8d4ee2d9 default
parent child Browse files
Show More
@@ -322,7 +322,7 b' def _walkgraph(edges):'
322 v.remove(leaf)
322 v.remove(leaf)
323
323
324 def _getcomments(text):
324 def _getcomments(text):
325 """
325 r"""
326 >>> [pycompat.sysstr(s) for s in _getcomments(br'''
326 >>> [pycompat.sysstr(s) for s in _getcomments(br'''
327 ... G
327 ... G
328 ... |
328 ... |
@@ -341,7 +341,7 b' def _getcomments(text):'
341
341
342 @command(b'debugdrawdag', [])
342 @command(b'debugdrawdag', [])
343 def debugdrawdag(ui, repo, **opts):
343 def debugdrawdag(ui, repo, **opts):
344 """read an ASCII graph from stdin and create changesets
344 r"""read an ASCII graph from stdin and create changesets
345
345
346 The ASCII graph is like what :hg:`log -G` outputs, with each `o` replaced
346 The ASCII graph is like what :hg:`log -G` outputs, with each `o` replaced
347 to the name of the node. The command will create dummy changesets and local
347 to the name of the node. The command will create dummy changesets and local
General Comments 0
You need to be logged in to leave comments. Login now