# HG changeset patch # User David Soria Parra # Date 2008-12-05 10:12:46 # Node ID cae586246331f6f0e4e976c66aeaae84b9ae1cf2 # Parent 4c3e0ad58c5bcb92caee3f28bc4c92899aa7fca2 bookmarks: Fix indention diff --git a/hgext/bookmarks.py b/hgext/bookmarks.py --- a/hgext/bookmarks.py +++ b/hgext/bookmarks.py @@ -229,9 +229,9 @@ def pushnonbookmarked(orig, ui, repo, *a else: heads = repo.heads() - markheads = parse(repo).values() + markheads = parse(repo).values() opts['rev'] = [head for head in heads if not(head in markheads)] - + orig(ui, repo, *args, **opts) def uisetup(ui):