Skip to content

Commit

Permalink
Fix settings file not loading properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mandeep committed Apr 6, 2018
1 parent fd728a4 commit 4409580
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ class CondaCommand(sublime_plugin.WindowCommand):
@property
def settings(self):
"""Load the plugin settings for commands to use."""
return sublime.load_settings('conda.sublime-settings')
if sys.platform.startswith('win'):
return sublime.load_settings('Conda (Windows).sublime-settings')
else:
return sublime.load_settings('Conda.sublime-settings')

@property
def executable(self):
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"0.4.2": "messages/v0.4.2.txt",
"0.4.3": "messages/v0.4.3.txt",
"0.4.4": "messages/v0.4.4.txt",
"0.4.5": "messages/v0.4.5.txt"
"0.4.5": "messages/v0.4.5.txt",
"0.4.6": "messages/v0.4.6.txt"
}
4 changes: 4 additions & 0 deletions messages/v0.4.6.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Conda v0.4.6
============

- Fix settings file not being loaded

0 comments on commit 4409580

Please sign in to comment.