diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-20 16:48:29 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-20 16:48:29 -0500 |
commit | cd8c65133e493730d9eb4c67f691d100c845a634 (patch) | |
tree | 75ed01e3791073c77376577f6d37ee4d95a81515 /mediagoblin | |
parent | 8f12c9b24cb6fef5d7cc332e5e5e8d5587ba38e0 (diff) | |
download | mediagoblin-cd8c65133e493730d9eb4c67f691d100c845a634.tar.lz mediagoblin-cd8c65133e493730d9eb4c67f691d100c845a634.tar.xz mediagoblin-cd8c65133e493730d9eb4c67f691d100c845a634.zip |
Removing unused imports
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/gmg_commands/import_export.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mediagoblin/gmg_commands/import_export.py b/mediagoblin/gmg_commands/import_export.py index f6651327..83d64313 100644 --- a/mediagoblin/gmg_commands/import_export.py +++ b/mediagoblin/gmg_commands/import_export.py @@ -14,22 +14,17 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -from mediagoblin.gmg_commands import util as commands_util from mediagoblin import mg_globals -from mediagoblin.db import util as db_util from mediagoblin.db.open import setup_connection_and_db_from_config from mediagoblin.init.config import read_mediagoblin_config -from mediagoblin import util as mg_util from mediagoblin.storage import BasicFileStorage from mediagoblin.init import setup_storage, setup_global_and_app_config -import shlex import shutil import tarfile import subprocess import os.path import os -import re import sys |