From dffa0b0983f971f19be62d69b1759168da82477d Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 19 May 2011 22:44:57 -0500 Subject: [PATCH] Another minor formatting change. --- mediagoblin/util.py | 7 ++++--- 1 file 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):