[V3] Clean up some ugly auto-formatted strings (#1753)

* [V3] Cleanup some ugly auto-formatted strings

* Reformat
This commit is contained in:
Tobotimus
2018-06-03 08:01:14 +10:00
committed by Will
parent c1f09326cc
commit 622382f425
3 changed files with 5 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ if not config_dir:
try:
config_dir.mkdir(parents=True, exist_ok=True)
except PermissionError:
print("You don't have permission to write to " "'{}'\nExiting...".format(config_dir))
print("You don't have permission to write to '{}'\nExiting...".format(config_dir))
sys.exit(1)
config_file = config_dir / "config.json"
@@ -101,7 +101,7 @@ def get_data_dir():
)
sys.exit(1)
print("You have chosen {} to be your data directory." "".format(default_data_dir))
print("You have chosen {} to be your data directory.".format(default_data_dir))
if not confirm("Please confirm (y/n):"):
print("Please start the process over.")
sys.exit(0)