def load(path):
    try:
        return open(path).read()
    except:
        return ''  # SAMPLE bare except
