At lp:///~jameinel/bzr/1.12-fix-short-log

------------------------------------------------------------
revno: 3944
revision-id: [email protected]
parent: [email protected]
committer: John Arbash Meinel <[email protected]>
branch nick: 1.12-fix-short-log
timestamp: Fri 2009-01-16 16:16:14 -0600
message:
  When testing if we should show merges, use 'not' rather than 'is False'
=== modified file 'bzrlib/log.py'
--- a/bzrlib/log.py     2009-01-15 14:05:13 +0000
+++ b/bzrlib/log.py     2009-01-16 22:16:14 +0000
@@ -620,7 +620,7 @@
     :return: an iterator of (revision_id, revno, merge_depth)
     (if there is no revno for a revision, None is supplied)
     """
-    if include_merges is False:
+    if not include_merges:
         revision_ids = mainline_revs[1:]
         if direction == 'reverse':
             revision_ids.reverse()

-- 
bazaar-commits mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/bazaar-commits

Reply via email to