Work around the bookmark changes
1 files changed, 3 insertions(+), 1 deletions(-)

M guestrepo/guestrepo.py
M guestrepo/guestrepo.py +3 -1
@@ 359,7 359,9 @@ def summary(ui, repo, **opts):
             try:
                 currentbookmark = bookmarks.readcurrent(guestrepo)
             except AttributeError:
-                currentbookmark = bookmarks.readactive(guestrepo)
+                # TODO: rework to correct Mercurial interfact
+                currentbookmark = bookmarks._readactive(guestrepo, bmarks)
+
 
             if currentbookmark:
                 output.append('*' + currentbookmark)