summaryrefslogtreecommitdiff
path: root/engine/jastring.py
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2008-09-03 09:15:07 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2008-09-03 09:15:07 +0800
commit673e69982143c0cc47de3c93e77453ffc390afa2 (patch)
tree892ecb77ae3aeb228827046f7ad33cd8a9d1cfc1 /engine/jastring.py
parenta170b2704194c5a047820cfa5d68e3a22e84e5f7 (diff)
downloadibus-anthy-673e69982143c0cc47de3c93e77453ffc390afa2.tar.gz
Add romaji.py
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)