[Pkg-bazaar-commits] ./bzr-stats/unstable r23: Merge fixes.

Jelmer Vernooij jelmer at samba.org
Fri Jul 25 18:49:05 UTC 2008


------------------------------------------------------------
revno: 23
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: debian
timestamp: Fri 2008-07-25 20:49:05 +0200
message:
  Merge fixes.
modified:
  __init__.py
  debian/changelog
  debian/control
    ------------------------------------------------------------
    revno: 10.5.1
    committer: Russ Brown <pickscrape at gmail.com>
    branch nick: bzr-stats
    timestamp: Wed 2008-07-16 13:37:53 -0500
    message:
      Made to work with python 2.4
    modified:
      __init__.py
    ------------------------------------------------------------
    revno: 10.2.15
    committer: Jelmer Vernooij <jelmer at samba.org>
    branch nick: trunk
    timestamp: Thu 2008-07-17 11:05:33 +0200
    message:
      Merge support for Python2.4.
    modified:
      __init__.py
    ------------------------------------------------------------
    revno: 22.1.1
    committer: Jelmer Vernooij <jelmer at samba.org>
    branch nick: debian
    timestamp: Thu 2008-07-17 17:58:06 +0200
    message:
      Package trunk.
    modified:
      __init__.py
    ------------------------------------------------------------
    revno: 22.1.2
    committer: Jelmer Vernooij <jelmer at samba.org>
    branch nick: debian
    timestamp: Fri 2008-07-18 11:15:19 +0200
    message:
      Fix formatting.
    modified:
      debian/control
-------------- next part --------------
=== modified file '__init__.py'
--- a/__init__.py	2008-07-16 17:44:05 +0000
+++ b/__init__.py	2008-07-17 09:05:33 +0000
@@ -216,9 +216,12 @@
                 info = get_info(a_branch.repository, last_rev)
         finally:
             a_branch.unlock()
-        def fetch_class_stats(revs):
-            return gather_class_stats(a_branch.repository, revs)
-        display_info(info, self.outf, fetch_class_stats if show_class else None)
+        if show_class:
+            def fetch_class_stats(revs):
+                return gather_class_stats(a_branch.repository, revs)
+        else:
+            fetch_class_stats = None
+        display_info(info, self.outf, fetch_class_stats)
 
 
 commands.register_command(cmd_committer_statistics)

=== modified file 'debian/changelog'
--- a/debian/changelog	2008-07-16 17:44:35 +0000
+++ b/debian/changelog	2008-07-25 18:49:05 +0000
@@ -1,4 +1,4 @@
-bzr-stats (0.0.1~bzr23-1) unstable; urgency=low
+bzr-stats (0.0.1~bzr25-1) unstable; urgency=low
 
   * Initial release. (Closes: #491103)
 

=== modified file 'debian/control'
--- a/debian/control	2008-07-03 14:42:20 +0000
+++ b/debian/control	2008-07-18 09:15:19 +0000
@@ -15,6 +15,6 @@
 Depends: bzr (>= 1.0), ${python:Depends}
 Enhances: bzr
 XB-Python-Version: ${python:Versions}
-Description: Statistics plugin for Bazaar
+Description: statistics plugin for Bazaar
  This is a simple plugin for Bazaar that can list the contributors to a 
  branch and what they worked on.



More information about the Pkg-bazaar-commits mailing list