[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

@@ -25,9 +25,7 @@ if sys.platform == "linux":
PYTHON_OK = sys.version_info >= (3, 5)
INTERACTIVE_MODE = not len(sys.argv) > 1 # CLI flags = non-interactive
INTRO = (
"==========================\n" "Red Discord Bot - Launcher\n" "==========================\n"
)
INTRO = "==========================\nRed Discord Bot - Launcher\n==========================\n"
IS_WINDOWS = os.name == "nt"
IS_MAC = sys.platform == "darwin"
@@ -457,7 +455,7 @@ def main_menu():
def main():
if not PYTHON_OK:
raise RuntimeError(
"Red requires Python 3.5 or greater. " "Please install the correct version!"
"Red requires Python 3.5 or greater. Please install the correct version!"
)
if args.debuginfo: # Check first since the function triggers an exit
debug_info()