Skip to content

Commit

Permalink
flip order of the sparklines to be less confusing
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsw committed Apr 24, 2008
1 parent 29a9928 commit dabdbd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp.py
Expand Up @@ -251,7 +251,7 @@ def GET(self, table, what):
if not r_safeproperty.match(what): raise web.notfound

inp = web.input(point=None)
points = db.select(table, what=what, order=what+' desc', where=what+' is not null')
points = db.select(table, what=what, order=what+' asc', where=what+' is not null')
points = [x[what] for x in points.list()]

web.header('Content-Type', 'image/png')
Expand Down

0 comments on commit dabdbd0

Please sign in to comment.