# HG changeset patch # User Beliar # Date 1332848555 -7200 # Node ID 7fc3acada7e0b64741a31a4409b00b780938dec1 # Parent 133adcfad0061537e8aef328b9c5671c6dd43bcb Changes required by the removal of bGrease. Update .hgsubstate. diff -r 133adcfad006 -r 7fc3acada7e0 .hgsubstate --- a/.hgsubstate Sat Mar 24 09:59:46 2012 +0100 +++ b/.hgsubstate Tue Mar 27 13:42:35 2012 +0200 @@ -1,2 +1,2 @@ -ab6a0fd1668aa7a294682ed31d083682efeb626d parpg +2a12e2843984bae6b3b885b67cb22b87e5366701 parpg 833aac39c9bd43873554f19ab3d6c27ddba317ff tools diff -r 133adcfad006 -r 7fc3acada7e0 tests/test_container.py --- a/tests/test_container.py Sat Mar 24 09:59:46 2012 +0100 +++ b/tests/test_container.py Tue Mar 27 13:42:35 2012 +0200 @@ -17,8 +17,8 @@ import unittest -from parpg.bGrease.world import BaseWorld -from parpg.bGrease.entity import Entity +from bGrease.world import BaseWorld +from bGrease.entity import Entity from parpg.components import containable, container class TestContainer(unittest.TestCase): diff -r 133adcfad006 -r 7fc3acada7e0 tests/test_equip.py --- a/tests/test_equip.py Sat Mar 24 09:59:46 2012 +0100 +++ b/tests/test_equip.py Tue Mar 27 13:42:35 2012 +0200 @@ -15,8 +15,8 @@ # You should have received a copy of the GNU General Public License # along with PARPG. If not, see . -from parpg.bGrease.world import BaseWorld -from parpg.bGrease.entity import Entity +from bGrease.world import BaseWorld +from bGrease.entity import Entity from parpg.components import Equipable from parpg.components import Equip from parpg.components import equip diff -r 133adcfad006 -r 7fc3acada7e0 tests/test_lockable.py --- a/tests/test_lockable.py Sat Mar 24 09:59:46 2012 +0100 +++ b/tests/test_lockable.py Tue Mar 27 13:42:35 2012 +0200 @@ -15,8 +15,8 @@ # You should have received a copy of the GNU General Public License # along with PARPG. If not, see . -from parpg.bGrease.world import BaseWorld -from parpg.bGrease.entity import Entity +from bGrease.world import BaseWorld +from bGrease.entity import Entity from parpg.components import lockable import unittest