This commit is contained in:
simon987 2021-01-16 22:20:47 -05:00
parent 19636abafe
commit 69b6902fef

View File

@ -7,7 +7,7 @@ from post_process import get_links_from_body
from state import PoalState
from util import Web, logger
PF_MAX_PAGE = os.environ.get("PF_MAX_PAGE", 9999999)
PF_MAX_PAGE = int(os.environ.get("PF_MAX_PAGE", 9999999))
class PoalHelper: