/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to push.py

  • Committer: Curtis Hovey
  • Date: 2012-03-04 00:20:46 UTC
  • mto: This revision was merged to the branch mainline in revision 782.
  • Revision ID: sinzui.is@verizon.net-20120304002046-hzoelkrv0v708voe
Cast as deprecated int. Needs fixing in the next branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
        else:
181
181
            count = tree_to.pull(br_from, overwrite)
182
182
 
183
 
    return "Pushed %s revisions." % count
 
183
    return "Pushed %d revisions." % int(count)