summaryrefslogtreecommitdiff
path: root/engine/jastring.py
diff options
context:
space:
mode:
Diffstat (limited to 'engine/jastring.py')
-rw-r--r--engine/jastring.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/jastring.py b/engine/jastring.py
index 9d56edd..4295421 100644
--- a/engine/jastring.py
+++ b/engine/jastring.py
@@ -44,7 +44,7 @@ class JaString:
new_segments = segment_after.prepend(c)
else:
if c != u"\0" and c != u"":
- new_segments = [romaji.Segment(c)]
+ new_segments = [romaji.RomajiSegment(c)]
if new_segments:
self.__segments[self.__cursor:self.__cursor] = new_segments
self.__cursor += len(new_segments)