identify: show nullid for empty repo
authorMatt Mackall <mpm@selenic.com>
Thu, 21 Jun 2007 11:42:39 -0500
changeset 4662 f9b8ea362b49
parent 4661 a7e9b6b1adeb
child 4663 6b2e8cb39583
identify: show nullid for empty repo
mercurial/commands.py
tests/test-tags.out
--- a/mercurial/commands.py	Thu Jun 21 10:00:59 2007 +0200
+++ b/mercurial/commands.py	Thu Jun 21 11:42:39 2007 -0500
@@ -1441,10 +1441,10 @@
     hash identifiers, followed by a "+" if there are uncommitted changes
     in the working directory, followed by a list of tags for this revision.
     """
+
     parents = [p for p in repo.dirstate.parents() if p != nullid]
     if not parents:
-        ui.write(_("unknown\n"))
-        return
+        parents = [nullid]
 
     hexfunc = ui.debugflag and hex or short
     modified, added, removed, deleted = repo.status()[:4]
--- a/tests/test-tags.out	Thu Jun 21 10:00:59 2007 +0200
+++ b/tests/test-tags.out	Thu Jun 21 11:42:39 2007 -0500
@@ -1,4 +1,4 @@
-unknown
+000000000000 tip
 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
 0acdaf898367 tip
 tip                                0:0acdaf898367