Mercurial > parpg-core
changeset 211:7fc3acada7e0
Changes required by the removal of bGrease.
Update .hgsubstate.
author | Beliar <KarstenBock@gmx.net> |
---|---|
date | Tue, 27 Mar 2012 13:42:35 +0200 |
parents | 133adcfad006 |
children | 1c02f7edee83 |
files | .hgsubstate tests/test_container.py tests/test_equip.py tests/test_lockable.py |
diffstat | 4 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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):
--- 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 <http://www.gnu.org/licenses/>. -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
--- 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 <http://www.gnu.org/licenses/>. -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