~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/widgets/date.py

  • Committer: Brad Crittenden
  • Date: 2011-06-30 16:43:46 UTC
  • mto: (13316.13.6 getnewcache)
  • mto: This revision was merged to the branch mainline in revision 13355.
  • Revision ID: bac@canonical.com-20110630164346-k6nwawklpxrg6xg5
Fixed lint

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
    """
118
118
 
119
119
    timeformat = '%Y-%m-%d %H:%M:%S'
120
 
 
121
 
 
122
120
    required_time_zone = None
123
121
    display_zone = True
124
122
    from_date = None
150
148
            ]
151
149
        outputs = []
152
150
        for fmt in time_formats:
153
 
           outputs.extend(['%s %s' % (d, fmt) for d in date_formats])
 
151
            outputs.extend(['%s %s' % (d, fmt) for d in date_formats])
154
152
 
155
153
        return [o.strip() for o in outputs]
156
154