Skip to content

Commit

Permalink
versions up
Browse files Browse the repository at this point in the history
  • Loading branch information
zhebrak committed Feb 24, 2015
1 parent 8a92de0 commit ed83bd6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ TODO
MANIFEST
dist/*
.coverage
topypi
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ Django Statsy

[![Build Status](https://travis-ci.org/fata1ex/django-statsy.svg)](https://travis-ci.org/fata1ex/django-statsy) [![Coverage Status](https://coveralls.io/repos/fata1ex/django-statsy/badge.svg)](https://coveralls.io/r/fata1ex/django-statsy) [![Requirements Status](https://requires.io/github/fata1ex/django-statsy/requirements.svg?branch=master)](https://requires.io/github/fata1ex/django-statsy/requirements/?branch=master) [![PyPI version](https://badge.fury.io/py/django-statsy.svg)](http://badge.fury.io/py/django-statsy)

[![Stories in Ready](https://badge.waffle.io/fata1ex/django-statsy.svg?label=in%20progress&title=In%20Progress)](https://waffle.io/fata1ex/django-statsy)

Statsy is an application for collecting and displaying statistics in your Django project.


Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
django==1.7.4
jsonfield==1.0.2
jsonfield==1.0.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup


__version__ = '0.0.9.5dev'
__version__ = '0.0.9.7dev'

short_description = 'Statistics for Django projects'

Expand Down
2 changes: 1 addition & 1 deletion statsy/templates/statsy/custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

{% block content %}
<div class="row">
<h1>Custom Stats</h1>
<h1>Statistics</h1>
{% for category, category_data in url_map.items %}
<div class="statsy__custom_category">
<h5>{{ category }}</h5>
Expand Down
2 changes: 1 addition & 1 deletion statsy/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_aggregated_stats_for_the_period(category, start, end=None, aggregation_p
for category, data in aggregated_stats.items():
consecutive_null_periods = []
for period in aggregated_periods:
if period > last_period:
if period >= last_period:
data[period] = None

elif period not in data:
Expand Down

0 comments on commit ed83bd6

Please sign in to comment.