From 66e832246a970e10f1f7f91a9cd0a2a583e917be Mon Sep 17 00:00:00 2001 From: David Sowder Date: Tue, 21 Feb 2012 18:22:48 -0600 Subject: [PATCH] pep8 compliance: E261 at least two spaces before inline comment --- albow/music.py | 2 +- albow/openglwidgets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/albow/music.py b/albow/music.py index 138fe9f..2b926cd 100644 --- a/albow/music.py +++ b/albow/music.py @@ -129,7 +129,7 @@ def start_next_music(): if music_enabled and current_playlist: next_music = current_playlist.next() if next_music: - print "albow.music: loading", repr(next_music) ### + print "albow.music: loading", repr(next_music) ### music.load(next_music) music.play() next_change_delay = change_delay diff --git a/albow/openglwidgets.py b/albow/openglwidgets.py index f89dda2..7c65603 100644 --- a/albow/openglwidgets.py +++ b/albow/openglwidgets.py @@ -60,7 +60,7 @@ class GLViewport(Widget): p0 = up(x, y, 0.0, mv_mat, pr_mat, viewport) p1 = up(x, y, 1.0, mv_mat, pr_mat, viewport) event.dict['ray'] = (p0, p1) - except ValueError: #projection failed! + except ValueError: # projection failed! pass import numpy