pep8 compliance: E261 at least two spaces before inline comment

This commit is contained in:
David Sowder 2012-02-21 18:22:48 -06:00
parent 7cbaf42a6e
commit 66e832246a
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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