Fix container picture generator

This commit is contained in:
Jerome Petazzoni
2020-01-30 01:11:09 -06:00
parent 8933e6aa1b
commit e2f3034a96

View File

@@ -28,7 +28,7 @@ class Interstitials(object):
def next(self):
index = self.index % len(self.images)
index += 1
self.index += 1
return self.images[index]