mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-21 02:16:09 -05:00
[V3] Clean up some ugly auto-formatted strings (#1753)
* [V3] Cleanup some ugly auto-formatted strings * Reformat
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user