transforms/interleave: handle 'at'

This commit is contained in:
Sebastien Bourdeauducq 2014-11-15 14:50:26 -07:00
parent 17f5a31320
commit ddc9c3423f
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ def _get_duration(stmt):
except NotConstant:
da = -1
return da
elif name == "at":
return -1
else:
return 0
else: