# HG changeset patch # User mpm@selenic.com # Date 1126206991 25200 # Node ID a5cb17a2d2406c68627e684199ab1665df0dc9a6 # Parent 89f899caecb5887da23401b607e8d3409ad172e6 Fix missing docstring for unbundle diff -r 89f899caecb5 -r a5cb17a2d240 mercurial/commands.py --- a/mercurial/commands.py Thu Sep 08 12:10:59 2005 -0700 +++ b/mercurial/commands.py Thu Sep 08 12:16:31 2005 -0700 @@ -1557,6 +1557,7 @@ show_changeset(ui, repo, changenode=n) def unbundle(ui, repo, fname): + """apply a changegroup file""" f = urllib.urlopen(fname) if f.read(4) != "HG10":