From 330b0ad2ec9230d7ae39ed6198fd27a53c04e3f2 Mon Sep 17 00:00:00 2001 From: Bob Farrell Date: Wed, 9 Jun 2010 17:18:02 +0100 Subject: [PATCH] remove debug output and swearing --- migrate/versioning/util/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/migrate/versioning/util/__init__.py b/migrate/versioning/util/__init__.py index 17645b5..5aefbae 100644 --- a/migrate/versioning/util/__init__.py +++ b/migrate/versioning/util/__init__.py @@ -33,7 +33,6 @@ def load_model(dotted_name): warnings.warn('model should be in form of module.model:User ' 'and not module.model.User', MigrateDeprecationWarning) dotted_name = ':'.join(dotted_name.rsplit('.', 1)) - import os; print "*****************************", os.environ.get('PYTHONPATH', 'ARGH FUCK') return EntryPoint.parse('x=%s' % dotted_name).load(False) else: # Assume it's already loaded.