Skip to content

Commit 175056e

Browse files
authored
Update __init__.py
commands are case sensitive
1 parent 14a95c0 commit 175056e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jupyter_pgadmin_proxy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ def run_app():
5151

5252
icon_path = get_icon_path()
5353
try:
54-
executable_name = shutil.which("pgAdmin4")
54+
executable_name = shutil.which("pgadmin4")
5555
except Exception:
56-
executable_name = "pgAdmin4"
56+
executable_name = "pgadmin4"
5757
host = "127.0.0.1"
5858
user = get_system_user()
5959
logger.debug(f"[{user}] Icon_path: {icon_path}")

0 commit comments

Comments
 (0)