From b2db58afc7382da69fc340a1a24c68d42f907ead Mon Sep 17 00:00:00 2001 From: Eevee Date: Sun, 17 Apr 2011 22:35:24 -0700 Subject: [PATCH] Fix discrepancy between media-accessors branches. --- pokedex/tests/test_media.py | 3 ++- pokedex/{db => util}/media.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename pokedex/{db => util}/media.py (100%) diff --git a/pokedex/tests/test_media.py b/pokedex/tests/test_media.py index e84aad4..81b5714 100644 --- a/pokedex/tests/test_media.py +++ b/pokedex/tests/test_media.py @@ -14,7 +14,8 @@ from nose.plugins.skip import SkipTest import nose import pkg_resources -from pokedex.db import tables, connect, media +from pokedex.db import tables, connect +from pokedex.util import media session = connect() basedir = pkg_resources.resource_filename('pokedex', 'data/media') diff --git a/pokedex/db/media.py b/pokedex/util/media.py similarity index 100% rename from pokedex/db/media.py rename to pokedex/util/media.py