Skip to content

Commit

Permalink
Use correct variable for debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
mrworf committed Aug 6, 2021
1 parent d1c2646 commit a0ec16a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/slideshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def delayNextImage(self, time_process):

def showPreloadedImage(self, image):
if not os.path.isfile(image.filename):
logging.warning("Trying to show image '%s', but file does not exist!" % filename)
logging.warning("Trying to show image '%s', but file does not exist!" % image.filename)
self.delayer.set()
return
self.display.image(image.filename)
Expand Down

0 comments on commit a0ec16a

Please sign in to comment.