Skip to content

Commit

Permalink
Release v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xfangfang committed Sep 11, 2021
1 parent 644e2c6 commit 3d6c112
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion macast/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6
0.61
4 changes: 2 additions & 2 deletions macast/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def dialog(self, content, callback=None, cancel="Cancel", ok="Ok"):
def get_env(self):
# https://github.com/pyinstaller/pyinstaller/issues/3668#issuecomment-742547785
env = Setting.get_system_env()
toDelete = []
toDelete = []
for (k, v) in env.items():
if k != 'PATH' and 'tmp' in v:
toDelete.append(k)
Expand All @@ -295,7 +295,7 @@ def open_browser(self, url):
elif self.platform == Platform.Win32:
webbrowser.open(url)
else:
subprocess.Popen(["xdg-open",url], env=self.get_env())
subprocess.Popen(["xdg-open", url], env=self.get_env())

def open_directory(self, path):
if self.platform == Platform.Darwin:
Expand Down

0 comments on commit 3d6c112

Please sign in to comment.