Browse Source

Add little notice when using the default config

sh4nks 8 years ago
parent
commit
4075f305d7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      flaskbb/cli/commands.py

+ 2 - 0
flaskbb/cli/commands.py

@@ -162,6 +162,8 @@ def make_app(script_info):
                             "Using default config.".format(config_file),
                             "Using default config.".format(config_file),
                             fg="red")
                             fg="red")
                 config_file = None
                 config_file = None
+    else:
+        click.secho("[~] Using default config.", fg="yellow")
 
 
     return create_app(config_file)
     return create_app(config_file)