Skip to content

Commit

Permalink
Merge pull request #28 from Semi-ATE/seimit_issue27
Browse files Browse the repository at this point in the history
Fix for issue #27. Spyder-remote-client sends wrong prefix for location of the python
  • Loading branch information
nerohmot authored Oct 26, 2021
2 parents b8e67dd + a839da9 commit 7db6189
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spyder-remote-client/spyder_remote_client/spyder/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,6 @@ def change_host(self):
for key, value in properties.items():
if key.startswith("conda_env_") and key.endswith("_yes"):
env_name = value.split("/")[-1]
self.env_comvo.addItem(env_name, value)
#Fix for issue #27 for the spyder-remote-server issue
prefix = '/home/'+properties["guest_account"]+'/'+env_name
self.env_comvo.addItem(env_name, prefix)

0 comments on commit 7db6189

Please sign in to comment.