neel mani
Results
3
comments of
neel mani
Need to change the code in file __init__.py Line 44: ` for i in xrange(self.num_pages): ' to ` for i in list(range(self.num_pages)): `
@andjelx xrange is not supported in Python3, what could be the probable work around?
@andjelx : My regret, your PR works fine, I was trying to solve it and got this issue resolve using the above solution as well. Thanks for making me re-understand...