Skip to content

Commit ec9c986

Browse files
authored
Merge pull request #147 from johndoe46/patch-1
fix path in flask demo
2 parents e706bad + f4be65c commit ec9c986

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)