Merge lp:~hid-iwata/qbzr/fix-974362 into lp:qbzr/0.22

Proposed by IWATA Hidetaka
Status: Merged
Approved by: Alexander Belchenko
Approved revision: 1475
Merged at revision: 1475
Proposed branch: lp:~hid-iwata/qbzr/fix-974362
Merge into: lp:qbzr/0.22
Diff against target: 12 lines (+2/-0)
1 file modified
lib/loggraphviz.py (+2/-0)
To merge this branch: bzr merge lp:~hid-iwata/qbzr/fix-974362
Reviewer Review Type Date Requested Status
Alexander Belchenko Approve
Review via email: mp+101850@code.launchpad.net

Description of the change

Fix 974362

To post a comment you must log in.
Revision history for this message
Alexander Belchenko (bialix) wrote :

Why this needed for all cases? How do you differentiate between case when qlog run for the entire branch and when for a subdir?

Revision history for this message
IWATA Hidetaka (hid-iwata) wrote :

FileIdFilter is used only when subdir or file path is specified.
So, we don't have to consider the case when qlog runs for the entire branch here.

Revision history for this message
Alexander Belchenko (bialix) wrote :

OK. Land it. Thank you

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/loggraphviz.py'
2--- lib/loggraphviz.py 2010-11-08 19:51:59 +0000
3+++ lib/loggraphviz.py 2012-04-13 00:38:18 +0000
4@@ -1456,6 +1456,8 @@
5
6 if revids is None:
7 revids = [rev.revid for rev in self.graph_viz.revisions]
8+ revids = [revid for revid in revids
9+ if not revid.startswith(CURRENT_REVISION)]
10
11 for repo, revids in self.graph_viz.get_repo_revids(revids):
12 if self.uses_inventory():

Subscribers

People subscribed via source and target branches