1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-24 12:14:20 +01:00

Add newline before printing

This commit is contained in:
Rnhmjoj 2014-12-03 20:58:56 +01:00
parent 92bf01bd10
commit 764ba8d869

View File

@ -470,7 +470,7 @@ def main():
# New input loop to support different link options # New input loop to support different link options
while True: while True:
try: try:
l = input("Select link(s) (Type 'h' for more options" l = input("\nSelect link(s) (Type 'h' for more options"
"['q' to quit]): ") "['q' to quit]): ")
except KeyboardInterrupt : except KeyboardInterrupt :
print("\nCancelled.") print("\nCancelled.")
@ -493,6 +493,7 @@ def main():
# Turn into list # Turn into list
choices = l.split(",") choices = l.split(",")
# Act on option, if supplied # Act on option, if supplied
print("")
if code == 'h': if code == 'h':
print("Options:", print("Options:",
"<links>: Download selected torrents", "<links>: Download selected torrents",