mirror of https://gitlab.com/bashrc2/epicyon
Avoid premature exit
parent
193edd2a92
commit
a589a14ca3
9
posts.py
9
posts.py
|
@ -1696,10 +1696,11 @@ def createBoxBase(baseDir: str,boxname: str, \
|
|||
if postsOnPageCtr > itemsPerPage:
|
||||
break
|
||||
# count the pages
|
||||
postsCtr += 1
|
||||
if postsCtr >= itemsPerPage:
|
||||
postsCtr = 0
|
||||
currPage += 1
|
||||
if currPage != pageNumber:
|
||||
postsCtr += 1
|
||||
if postsCtr >= itemsPerPage:
|
||||
postsCtr = 0
|
||||
currPage += 1
|
||||
except Exception as e:
|
||||
print(e)
|
||||
if headerOnly:
|
||||
|
|
Loading…
Reference in New Issue