1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-07-01 09:33:16 +00:00

Merge branch 'fix/syntax-python3-20170305' into travis

This commit is contained in:
林檎 2017-03-06 20:06:00 +08:00
commit 07ad73caca

View File

@ -248,6 +248,8 @@ class Pagination(object):
def iter_pages(self, left_edge=2, left_current=2,
right_current=5, right_edge=2):
last = 0
if sys.version_info.major >= 3:
xrange = range
for num in xrange(1, self.pages + 1): # ToDo: can be simplified
if num <= left_edge or (num > self.page - left_current - 1 and num < self.page + right_current) \
or num > self.pages - right_edge: