add spaces

if you make multi-line prints we need to add spaces at the end of the
    file.
This commit is contained in:
Andreas Zweili 2016-12-13 14:24:16 +01:00
parent 917d354c58
commit 196e40e35a
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ os.environ['BORG_PASSPHRASE'] = password
while chosen_activity != 0:
print("What would you like to do?")
# Start the chosen activity and go back to the activity selector.
print("1: List Backups, 2: Show archive details, 3: Mount Archive,"
print("1: List Backups, 2: Show archive details, 3: Mount Archive, "
"4: Restore Backup, 0: Exit")
try:
chosen_activity = int(input("Choose the desired activity: "))
@ -58,7 +58,7 @@ while chosen_activity != 0:
print()
if chosen_activity == 4:
archive_name = input("Please enter the archive name: ")
restore_path = input("Please enter the path where you want to"
restore_path = input("Please enter the path where you want to "
"restore to")
os.system('borg extract -v --list ::'
+ archive_name