Skip to content

Commit

Permalink
refactor: capitalize QGIS
Browse files Browse the repository at this point in the history
  • Loading branch information
koebi committed Dec 22, 2023
1 parent 6b1e717 commit e893030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ORStools/gui/ORStoolsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def run_gui_control(self):
)
return

agent = "QGis_ORStoolsDialog"
agent = "QGIS_ORStoolsDialog"
clnt = client.Client(provider, agent)
clnt_msg = ""

Expand Down
2 changes: 1 addition & 1 deletion ORStools/proc/base_processing_algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _get_ors_client_from_provider(
"""
name = cls.__name__
name = name.removeprefix("ORS").removesuffix("Algo")
agent = f"QGis_{name}"
agent = f"QGIS_{name}"

providers = configmanager.read_config()["providers"]
ors_provider = providers[provider]
Expand Down

0 comments on commit e893030

Please sign in to comment.