Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
mik3y committed Sep 19, 2014
1 parent 935dc61 commit 562a4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykeg/web/kegweb/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def fullscreen(request):
context = RequestContext(request)
taps = models.KegTap.objects.all()
active_taps = [t for t in taps if t.current_keg]
pages = [active_taps[i:i+4] for i in range(0, len(active_taps), 4)]
pages = [active_taps[i:i + 4] for i in range(0, len(active_taps), 4)]
context['pages'] = pages

return render_to_response('kegweb/fullscreen.html', context_instance=context)
Expand Down

0 comments on commit 562a4c9

Please sign in to comment.