Skip to content

Commit

Permalink
v6.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Jul 7, 2017
1 parent 43ed4b8 commit 8d4dc25
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"6.0.2": "messages/6.0.2.txt",
"6.1.0": "messages/6.1.0.txt",
"6.1.1": "messages/6.1.1.txt",
"6.1.2": "messages/6.1.2.txt"
"6.1.2": "messages/6.1.2.txt",
"6.1.3": "messages/6.1.3.txt",
}
3 changes: 3 additions & 0 deletions messages/6.1.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
6.1.3

- Fix critical bug on windows. The plugin should work on windows again. Sorry about that folks. I haven't been using windows all that often these days.
6 changes: 4 additions & 2 deletions standard-format.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

SYNTAX_RE = re.compile(r'(?i)/([^/]+)\.(?:tmLanguage|sublime-syntax)$')


def calculate_env():
"""Generate environment based on global environment and local path"""
global local_path
Expand Down Expand Up @@ -115,8 +116,9 @@ def print_status(global_path, search_path):
if settings.get("check_version"):
print(
" {} version: {}"
.format(command[0], command_version(shutil.which(command[0], path=local_path)))
)
.format(command[0], command_version(
shutil.which(command[0], path=local_path)))
)


def plugin_loaded():
Expand Down

0 comments on commit 8d4dc25

Please sign in to comment.