Skip to content

Commit 09b2784

Browse files
committed
Needed to change the name of the mathcat import to libmathcat_py
1 parent c299d13 commit 09b2784

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addon/globalPlugins/MathCAT/MathCAT.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import winKernel
2424
import gui
2525

26-
from . import libmathcat # type: ignore
26+
from . import libmathcat_py as libmathcat # type: ignore
2727
from typing import List, Dict
2828
from keyboardHandler import KeyboardInputGesture # navigation key strokes
2929
from logHandler import log # logging

addon/globalPlugins/MathCAT/MathCATPreferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def validate_user_preferences():
645645
@staticmethod
646646
def write_user_preferences():
647647
# Language is special because it is set elsewhere by SetPreference which overrides the user_prefs -- so set it here
648-
from . import libmathcat # type: ignore
648+
from . import libmathcat_py as libmathcat # type: ignore
649649
try:
650650
libmathcat.SetPreference("Language", user_preferences["Speech"]["Language"])
651651
except Exception as e:

0 commit comments

Comments
 (0)