From 122b7f5da2b76e0603116a79a1caa71f193a5ead Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Sat, 30 Jul 2022 05:16:36 -0500 Subject: [PATCH] Remove annoying warning Signed-off-by: Felipe Contreras --- git-remote-hg | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/git-remote-hg b/git-remote-hg index c273c95..51b44ab 100755 --- a/git-remote-hg +++ b/git-remote-hg @@ -720,9 +720,7 @@ def do_list(parser): print "? refs/heads/branches/%s" % gitref(branch) for bmark in bmarks: - if bmarks[bmark].hex() == '0' * 40: - warn("Ignoring invalid bookmark '%s'", bmark) - else: + if bmarks[bmark].hex() != '0' * 40: print "? refs/heads/%s" % gitref(bmark) for tag, node in repo.tagslist():