Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Gambiarra/levels.py
diff options
context:
space:
mode:
Diffstat (limited to 'Gambiarra/levels.py')
-rw-r--r--Gambiarra/levels.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Gambiarra/levels.py b/Gambiarra/levels.py
index 72a4951..9d16bd2 100644
--- a/Gambiarra/levels.py
+++ b/Gambiarra/levels.py
@@ -20,7 +20,6 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import pygame
-from pygame.locals import *
import os
@@ -151,7 +150,7 @@ class Level(object):
pygame.display.flip()
while True:
for event in pygame.event.get():
- if event.type == MOUSEBUTTONDOWN:
+ if event.type == pygame.MOUSEBUTTONDOWN:
return
def init_levels():