changeset 1222:a5cb17a2d240

Fix missing docstring for unbundle
author mpm@selenic.com
date Thu, 08 Sep 2005 12:16:31 -0700
parents 89f899caecb5
children 8d43f8c0b836
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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":