From d2a251430ca9503ed3395317bbe7080989a204c2 Mon Sep 17 00:00:00 2001 From: CodePanter Date: Sat, 26 Nov 2016 14:18:16 +0100 Subject: [PATCH] Removed an unnecessary print statement. --- vloed.py | 1 - 1 file changed, 1 deletion(-) diff --git a/vloed.py b/vloed.py index e3d889d..abfc689 100755 --- a/vloed.py +++ b/vloed.py @@ -58,7 +58,6 @@ class Canvas(object): """Init the pygame canvas""" pygame.init() screeninfo = pygame.display.Info() - print options.width self.width = options.width if options.width else screeninfo.current_w self.height = options.height if options.height else screeninfo.current_h pygame.mixer.quit()