Fix Merge issue

main
Alexander Neff 2023-05-28 14:33:44 +02:00
parent 98e12fd374
commit 72435fce7f
1 changed files with 2 additions and 2 deletions

View File

@ -35,12 +35,12 @@ class ProtocolLoader:
db_file_path = path_join(path, protocol_name, "database.py")
db_nav_path = path_join(path, protocol_name, "db_navigator.py")
protocol_args_path = os.path.join(path, protocol_name, 'proto_args.py')
protocol_args_path = path.join(path, protocol_name, 'proto_args.py')
if exists(db_file_path):
protocols[protocol_name]["dbpath"] = db_file_path
if exists(db_nav_path):
protocols[protocol_name]["nvpath"] = db_nav_path
if os.path.exists(protocol_args_path):
if path.exists(protocol_args_path):
protocols[protocol_name]['argspath'] = protocol_args_path
return protocols