Skip to content

Commit

Permalink
Merge pull request #61 from cmd-ntrf/patch-1
Browse files Browse the repository at this point in the history
Fix module 'posixpath' has no attribute 'expand'
  • Loading branch information
consideRatio committed Sep 22, 2023
2 parents a016a6d + 3842c49 commit 1e5c10d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_remote_desktop_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def setup_desktop():
vnc_args = [vncserver]
socket_args = []

if not os.path.exists(os.path.expand('~/.vnc/xstartup')):
if not os.path.exists(os.path.expanduser('~/.vnc/xstartup')):
vnc_args.extend(['-xstartup', os.path.join(HERE, 'share/xstartup')])

vnc_command = shlex.join(
Expand Down

0 comments on commit 1e5c10d

Please sign in to comment.