Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 6cd344b

Browse files
committed
Allow relative paths in configuration to be made absolute.
1 parent 5d9701d commit 6cd344b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flask_op/server.py

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

5454
def main(config_file, args):
5555
logging.basicConfig(level=logging.DEBUG)
56-
config = Configuration.create_from_config_file(config_file)
56+
config = Configuration.create_from_config_file(config_file, base_path=dir_path)
5757
app = oidc_provider_init_app(config, 'oidc_op')
5858

5959
web_conf = config.webserver

0 commit comments

Comments
 (0)