Skip to content

Commit 4ae2bf1

Browse files
committed
Update OmniSharpSublime.py
1 parent bed8bf7 commit 4ae2bf1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OmniSharpSublime.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ def plugin_loaded():
1818
from package_control import events
1919
print('got events')
2020
print(events)
21-
if events.install('OmniSharp.OmniSharpSublime'):
21+
if events.install('OmniSharp'):
2222
print('Installing OmniSharp')
2323
if os.name == 'posix':
2424
# give the launch script executable permissions
2525
os.chmod('PrebuiltOmniSharpServer/omnisharp', st.st_mode | 0o111)
26-
elif events.post_upgrade('OmniSharp.OmniSharpSublime'):
26+
elif events.post_upgrade('OmniSharp'):
2727
print('Upgrading OmniSharp')
2828
if os.name == 'posix':
2929
# give the launch script executable permissions
@@ -33,7 +33,7 @@ def plugin_loaded():
3333
def plugin_unloaded():
3434
from package_control import events
3535

36-
if events.pre_upgrade('OmniSharp.OmniSharpSublime'):
36+
if events.pre_upgrade('OmniSharp'):
3737
print('About to upgrade OmniSharp')
3838
if os.name != 'posix':
3939
# kill the exe before the update complains about exe in use

0 commit comments

Comments
 (0)