[pypy-commit] lang-gameboy default: fix an pypy.lang import

RonnyPfannschmidt noreply at buildbot.pypy.org
Wed May 9 18:02:12 CEST 2012


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: 
Changeset: r3:6c1c40029aa6
Date: 2012-05-09 18:01 +0200
http://bitbucket.org/pypy/lang-gameboy/changeset/6c1c40029aa6/

Log:	fix an pypy.lang import

diff --git a/pygirl/gameboy.py b/pygirl/gameboy.py
--- a/pygirl/gameboy.py
+++ b/pygirl/gameboy.py
@@ -221,7 +221,7 @@
 
 if __name__ == '__main__':
     import sys
-    from pypy.lang.gameboy.gameboy_implementation import GameBoyImplementation
+    from pygirl.gameboy_implementation import GameBoyImplementation
     gameboy = GameBoyImplementation()
     rom = sys.argv[1]
     print rom


More information about the pypy-commit mailing list