Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 995e026

Browse files
committed
amend previous commit
1 parent f9432a3 commit 995e026

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
build_dirs = []
1313
build_dir_names = []
1414

15-
importlib.import_module('meson')
15+
importlib.import_module('Meson')
1616

1717
class MesonCompileInputHandler(sublime_plugin.ListInputHandler):
1818
def name(self):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'placeholder': 'Prefix (Leave blank for default value)',
1717
}
1818

19-
importlib.import_module('meson')
19+
importlib.import_module('Meson')
2020

2121
class MesonSetupInputHandler(sublime_plugin.TextInputHandler):
2222
def __init__(self, request):

utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
BUILD_CONFIG_NAME = 'meson.build'
88
STATUS_MESSAGE_PREFIX = 'Meson'
99

10-
panels = {'meson': None}
10+
panels = {'Meson': None}
1111

1212
def _test_paths_for_executable(paths, test_file):
1313
for directory in paths:
@@ -72,8 +72,8 @@ def display_status_message(message):
7272
sublime.active_window().status_message(STATUS_MESSAGE_PREFIX + ': ' + message)
7373

7474
def update_output_panel(cmd_action):
75-
panel = sublime.active_window().create_output_panel("meson")
76-
sublime.active_window().run_command("show_panel", {"panel": "output.meson"})
75+
panel = sublime.active_window().create_output_panel("Meson")
76+
sublime.active_window().run_command("show_panel", {"panel": "output.Meson"})
7777
panel.set_read_only(False)
7878
env = os.environ
7979
env["COLORTERM"] = "nocolor"

0 commit comments

Comments
 (0)