~ubuntu-branches/ubuntu/trusty/swift/trusty-updates

« back to all changes in this revision

Viewing changes to bin/swift-recon

  • Committer: Package Import Robot
  • Author(s): Chuck Short, James Page, Chuck Short
  • Date: 2013-08-13 10:37:13 UTC
  • mfrom: (1.2.21)
  • Revision ID: package-import@ubuntu.com-20130813103713-1ctbx4zifyljs2aq
Tags: 1.9.1-0ubuntu1
[ James Page ]
* d/control: Update VCS fields for new branch locations.

[ Chuck Short ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        self.server_type = 'object'
102
102
 
103
103
    def _gen_stats(self, stats, name=None):
104
 
        """ compute various stats from a list of values """
 
104
        """Compute various stats from a list of values."""
105
105
        cstats = [x for x in stats if x is not None]
106
106
        if len(cstats) > 0:
107
107
            ret_dict = {'low': min(cstats), 'high': max(cstats),