fix(nks): handles was taken from wrong attribute

This commit is contained in:
Jakub Jezek 2020-01-29 18:34:29 +01:00
parent 8db7c19e74
commit 2d1bd6227f
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3

View file

@ -106,8 +106,8 @@ class CollectClips(api.ContextPlugin):
"family": "clip",
"families": [],
"handles": 0,
"handleStart": projectdata.get("handles", 0),
"handleEnd": projectdata.get("handles", 0),
"handleStart": projectdata.get("handleStart", 0),
"handleEnd": projectdata.get("handleEnd", 0),
"version": int(version)})
instance = context.create_instance(**data)