Skip to content

Commit b799ee3

Browse files
committed
Bug fix.
1 parent 63e3ba5 commit b799ee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

udapi/block/ud/cs/addmwt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def multiword_analysis(self, node):
106106
return None
107107
node.misc['AddMwt'] = ''
108108
return {
109-
'form': node.form.lower()[:-1] + ' ' + subtokens[1],
109+
'form': subtokens[0] + ' ' + subtokens[1],
110110
'lemma': '* ť',
111111
'upos': '* PART',
112112
'xpos': '* TT-------------',

0 commit comments

Comments
 (0)