0 input for no limit
This commit is contained in:
@@ -53,6 +53,9 @@ It should redirect to a page which shows your **imgur_client_id** and **imgur_cl
|
|||||||
them, there.
|
them, there.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
### [20/07/2018]()
|
||||||
|
- "0" input for no limit
|
||||||
|
|
||||||
### [19/07/2018](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/41cbb58db34f500a8a5ecc3ac4375bf6c3b275bb)
|
### [19/07/2018](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/41cbb58db34f500a8a5ecc3ac4375bf6c3b275bb)
|
||||||
- Added v.redd.it support
|
- Added v.redd.it support
|
||||||
- Added custom exception descriptions to FAILED.json file
|
- Added custom exception descriptions to FAILED.json file
|
||||||
|
|||||||
@@ -320,7 +320,9 @@ class PromptUser:
|
|||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
GLOBAL.arguments.limit = int(input("\nlimit: "))
|
GLOBAL.arguments.limit = int(input("\nlimit (0 for none): "))
|
||||||
|
if GLOBAL.arguments.limit == 0:
|
||||||
|
GLOBAL.arguments.limit = None
|
||||||
break
|
break
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user