Added directions for frontpage

This commit is contained in:
Ali Parlakci
2018-07-23 18:49:28 +03:00
parent 27532408c1
commit 59b0376d6e

View File

@@ -242,10 +242,10 @@ class PromptUser:
if programMode == "subreddit":
subredditInput = input("subreddit: ")
subredditInput = input("subreddit (enter frontpage for frontpage): ")
GLOBAL.arguments.subreddit = subredditInput
while not subredditInput == "":
while not (subredditInput == "" or subredditInput.lower() == "frontpage"):
subredditInput = input("subreddit: ")
GLOBAL.arguments.subreddit += "+" + subredditInput