From 4ecc05d4cd2c4524e73b923a63910924609477b5 Mon Sep 17 00:00:00 2001 From: Vinyl Darkscratch Date: Thu, 8 Mar 2018 00:43:48 -0800 Subject: [PATCH] Fix a typo with parenthesis in journal --- journal/unix/journal.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/journal/unix/journal.py b/journal/unix/journal.py index abf2ebc..8339e5c 100644 --- a/journal/unix/journal.py +++ b/journal/unix/journal.py @@ -91,7 +91,7 @@ class Niko(QWidget): self.setMaximumSize(self.screen_width, self.screen_height) self.setGeometry(0, 0, self.screen_width, self.screen_height) - self.frames = [QPixmap(os.path.join(base_path, 'images', 'niko{}.png'.format(n)) for n in range(1,4))] + self.frames = [QPixmap(os.path.join(base_path, 'images', 'niko{}.png'.format(n))) for n in range(1,4)] self.setBackgroundRole(QPalette.Base) self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) @@ -106,7 +106,6 @@ if __name__ == '__main__': niko = Niko(start_x = x, start_y = y, screen_width = screensize.width(), screen_height = screensize.height()) - else: # Author's Journal mode journal = Journal()