def findTag()

in generatefopxconf.py [0:0]


def findTag(l):
    if 'debug' not in l and '*' not in l:
        exclude = ['true', 'false']
        for tag in l.split('"'):
            if tag.upper() != tag and '.' not in tag and ' ' not in tag and '(' not in tag and tag not in exclude and '[' not in tag:
                return tag