Skip to content

Commit

Permalink
Fix desktop file
Browse files Browse the repository at this point in the history
Signed-off-by: Alvaro Saurin <alvaro.saurin@gmail.com>
  • Loading branch information
inercia committed Jun 6, 2020
1 parent ea6e791 commit d03ae8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/com.github.inercia.k3x.desktop.in.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Name=k3x
Comment=k3x is a graphical user interface for k3d, making it trivial to have your own local Kubernetes cluster(s)
Exec=@APP_ID@
Exec=k3x
Terminal=false
Type=Application
Categories=System;
Expand Down
2 changes: 1 addition & 1 deletion src/k3d_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def kubeconfig(self) -> str:
"""
Returns the global Kubeconfig file where all the individual Kubeconfigs will be merged
"""
return os.path.expandvars(self._settings.get_string("kubeconfig").strip("\'").strip("\""))
return os.path.expandvars(self._settings.get_safe_string("kubeconfig"))

def check_local_registry(self):
"""
Expand Down

0 comments on commit d03ae8e

Please sign in to comment.