diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-19 22:44:57 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-19 22:44:57 -0500 |
commit | dffa0b0983f971f19be62d69b1759168da82477d (patch) | |
tree | c64e23ced76041c352e279a99bd6345abd6df0d3 /mediagoblin/util.py | |
parent | 434b32214711c1a0920ed7d4d890c67defcbd731 (diff) | |
download | mediagoblin-dffa0b0983f971f19be62d69b1759168da82477d.tar.lz mediagoblin-dffa0b0983f971f19be62d69b1759168da82477d.tar.xz mediagoblin-dffa0b0983f971f19be62d69b1759168da82477d.zip |
Another minor formatting change.
Diffstat (limited to 'mediagoblin/util.py')
-rw-r--r-- | mediagoblin/util.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mediagoblin/util.py b/mediagoblin/util.py index 867c4380..254245df 100644 --- a/mediagoblin/util.py +++ b/mediagoblin/util.py @@ -299,9 +299,10 @@ def setup_gettext(locale): class Pagination(object): """ - Pagination class, - initialization through __init__(self, cursor, page=1, per_page=2): - get actual data slice through __call__() + Pagination class for mongodb queries. + + Initialization through __init__(self, cursor, page=1, per_page=2), + get actual data slice through __call__(). """ def __init__(self, page, cursor, per_page=2): |