# HG changeset patch # User Thomas Arendsen Hein # Date 1118815625 -3600 # Node ID 97a897d32dfc802a3fd647c8b5458e7b761489a4 # Parent a76fc9c4b67b9ae896e5ae49781ccc10902c38b4 Handle the case where the current working copy is not based on a checkout. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Handle the case where the current working copy is not based on a checkout. Print 'unknown' in verbose mode and nothing otherwise. manifest hash: 5742c3c3a762b77ee1aeb62ed53b8f2d8e47a05d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFCr8WJW7P1GVgWeRoRAtNkAJ9Qea4u8GG8zdSk87qLApT88KMrgQCeO22w bJ12ieVHvLzc2NNAGV+zbeQ= =IYni -----END PGP SIGNATURE----- diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -330,6 +330,10 @@ def identify(ui, repo): mflag = (c or a or d or u) and "+" or "" parents = [parent for parent in repo.dirstate.parents() if parent != hg.nullid] + if not parents: + ui.note("unknown\n") + return + tstring = '' if not ui.quiet: taglist = [e[1] for e in tags_load(repo)]