Skip to content

Commit b6741fd

Browse files
committed
fix path in flask demo
1 parent 9fe7a72 commit b6741fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo-flask/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
app = Flask(__name__)
1313
app.config['SECRET_KEY'] = 'onelogindemopytoolkit'
14-
app.config['SAML_PATH'] = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'saml')
14+
app.config['SAML_PATH'] = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'saml')
1515

1616

1717
def init_saml_auth(req):

0 commit comments

Comments
 (0)