Skip to content

Commit

Permalink
fix bug 1020784 - case changed in nightly builds data
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmer committed Jun 5, 2014
1 parent a470351 commit 8624c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp-django/crashstats/crashstats/views.py
Expand Up @@ -889,7 +889,7 @@ def builds(request, product=None, versions=None, default_context=None):
middleware_results = api.get(product=product, version=versions)
builds = defaultdict(list)
for build in middleware_results:
if build['build_type'] != 'Nightly':
if build['build_type'].lower() != 'nightly':
continue
key = '%s%s' % (build['date'], build['version'])
build['date'] = datetime.datetime.strptime(
Expand Down

0 comments on commit 8624c3d

Please sign in to comment.