Browse Source

Merge pull request #2338 from pallets/cleanup-2326

cleanup #2326
pull/2340/head
Kenneth Reitz 7 years ago committed by GitHub
parent
commit
a4869eb4d2
  1. 8
      flask/cli.py

8
flask/cli.py

@ -98,10 +98,10 @@ def call_factory(app_factory, script_info, arguments=()):
def find_app_by_string(string, script_info, module):
"""Checks if the given string is a variable name or a function. If it is
a function, it checks for specified arguments and whether it takes
a ``script_info`` argument and calls the function with the appropriate
arguments. If it is a """
"""Checks if the given string is a variable name or a function. If it is
a function, it checks for specified arguments and whether it takes
a ``script_info`` argument and calls the function with the appropriate
arguments."""
from . import Flask
function_regex = r'^(?P<name>\w+)(?:\((?P<args>.*)\))?$'
match = re.match(function_regex, string)

Loading…
Cancel
Save