Skip to content

Commit

Permalink
Update package name in all remaining files
Browse files Browse the repository at this point in the history
  • Loading branch information
heinervdm committed Nov 25, 2012
1 parent 1f67879 commit cba2357
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions build.py
Expand Up @@ -5,8 +5,8 @@

from PIL import Image, ImageSequence

import source.koon.build as build
import source.koon.cfg as cfg
import monorail.koon.build as build
import monorail.koon.cfg as cfg

print "Updating data from assets..."

Expand Down
2 changes: 1 addition & 1 deletion monorail/koon/build.py
Expand Up @@ -5,7 +5,7 @@

from PIL import Image, ImageSequence

import source.koon.cfg as cfg
import monorail.koon.cfg as cfg


# TODO: make first one also list
Expand Down
2 changes: 1 addition & 1 deletion monorail/koon/tests/test_cfg.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

import source.koon.cfg as cfg
import monorail.koon.cfg as cfg

class TestConfigNode:

Expand Down
2 changes: 1 addition & 1 deletion monorail/koon/tests/test_geo.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from source.koon.geo import *
from monorail.koon.geo import *
import pygame

class TestRectangle:
Expand Down
2 changes: 1 addition & 1 deletion monorail/koon/tests/test_gfx.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from source.koon.gfx import *;
from monorail.koon.gfx import *;
import pygame

class TestFont:
Expand Down
8 changes: 4 additions & 4 deletions monorail/koon/tests/test_gui.py
@@ -1,10 +1,10 @@
#!/usr/bin/env python

import pygame
import source.koon.gui as gui
import source.koon.gfx as gfx
from source.koon.input import *
from source.koon.geo import Vec2D, Rectangle
import monorail.koon.gui as gui
import monorail.koon.gfx as gfx
from monorail.koon.input import *
from monorail.koon.geo import Vec2D, Rectangle


def setup_module( cls ):
Expand Down
4 changes: 2 additions & 2 deletions monorail/koon/tests/test_input.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python

from source.koon.input import *
from source.koon.geo import Vec2D
from monorail.koon.input import *
from monorail.koon.geo import Vec2D
from pygame.locals import *

class TestKeyboard:
Expand Down
4 changes: 2 additions & 2 deletions monorail/koon/tests/test_res.py
@@ -1,8 +1,8 @@
#!/usr/bin/env python

import pygame
from source.koon.res import resman
import source.koon.geo as geo
from monorail.koon.res import resman
import monorail.koon.geo as geo

class TestResourceManager:
def test_get( self ):
Expand Down
2 changes: 1 addition & 1 deletion monorail/koon/tests/test_snd.py
Expand Up @@ -3,7 +3,7 @@
import time

import pygame
import source.koon.snd as snd
import monorail.koon.snd as snd

def setup_module( module ):
pygame.init()
Expand Down

0 comments on commit cba2357

Please sign in to comment.