Skip to content

Commit 08e8e80

Browse files
authored
Take UI_CONFIG instead of NAME as UI config name (#163)
This fixes a small bug in the previous commit (which only shows up when `UI_CONFIG` has a different value than `NAME`).
1 parent 5018be5 commit 08e8e80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "qlever"
77
description = "Command-line tool for using the QLever graph database"
8-
version = "0.5.22"
8+
version = "0.5.23"
99
authors = [
1010
{ name = "Hannah Bast", email = "[email protected]" }
1111
]

src/qlever/commands/ui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def execute(self, args) -> bool:
108108

109109
# Construct commands and show them.
110110
pull_latest_image = "/" in args.ui_image and not args.no_pull_latest
111-
ui_config_name = args.name
111+
ui_config_name = args.ui_config
112112
ui_db_file = args.ui_db_file or f"{args.name}.ui-db.sqlite3"
113113
ui_db_file_from_image = "qleverui.sqlite3"
114114
ui_config_file = args.ui_config_file

0 commit comments

Comments
 (0)