Skip to content

Commit

Permalink
Oops, fixing a misplaced group_by in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Oct 17, 2010
1 parent 6310085 commit 330ccff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -25,7 +25,7 @@ Examples::
User.select({
User: ['*'],
Tweet: [Count('id', 'num_tweets')]
}).join(Tweet).group_by('id').order_by(('num_tweets', 'desc'))
}).group_by('id').join(Tweet).order_by(('num_tweets', 'desc'))


model definitions and schema creation
Expand Down

0 comments on commit 330ccff

Please sign in to comment.