Skip to content

Commit

Permalink
fix path in flask demo
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed Jun 24, 2019
1 parent 9fe7a72 commit b6741fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo-flask/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

app = Flask(__name__)
app.config['SECRET_KEY'] = 'onelogindemopytoolkit'
app.config['SAML_PATH'] = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'saml')
app.config['SAML_PATH'] = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'saml')


def init_saml_auth(req):
Expand Down

0 comments on commit b6741fd

Please sign in to comment.