From ce633d0590df29933da7f1f5fa26d75c2d08cd1d Mon Sep 17 00:00:00 2001 From: timmahrt Date: Tue, 16 Jun 2015 02:27:46 -0500 Subject: [PATCH] BUGFIX: Reflect changes in praatio library --- pysle/praattools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysle/praattools.py b/pysle/praattools.py index 77685ad..df59655 100644 --- a/pysle/praattools.py +++ b/pysle/praattools.py @@ -93,8 +93,8 @@ def syllabifyTextgrid(isleDict, tg, wordTierName, phoneTierName, tonicEntryList.append( (syllableStart, syllableEnd, tonicLabel) ) # Create a textgrid with the two syllable-level tiers - syllableTier = praatio.TextgridTier("syllable", syllableEntryList, praatio.INTERVAL_TIER) - tonicTier = praatio.TextgridTier('tonic', tonicEntryList, praatio.INTERVAL_TIER) + syllableTier = praatio.IntervalTier("syllable", syllableEntryList) + tonicTier = praatio.IntervalTier('tonic', tonicEntryList) syllableTG = praatio.Textgrid() syllableTG.addTier(syllableTier)