This commit is contained in:
Maximilian Giller 2019-04-08 15:20:09 +02:00
parent 4720774011
commit 25f2288bdd

View file

@ -32,7 +32,7 @@ class TechnicalDataDesign(DesignEntity):
def __get_data__(self):
data = "START: "
data += str(self.start)
data += "\nDURATION BEFOR RENDER: "
data += "\nDURATION BEFORE RENDER: "
dur = self.stop - self.start
data += str(dur)
data += "\nSTOP: "