diff options
author | Bob Farrell <robertanthonyfarrell@gmail.com> | 2010-06-09 17:18:02 +0100 |
---|---|---|
committer | Bob Farrell <robertanthonyfarrell@gmail.com> | 2010-06-09 17:18:02 +0100 |
commit | 330b0ad2ec9230d7ae39ed6198fd27a53c04e3f2 (patch) | |
tree | 270460084594e6bfb71294c3860d25529a37786f /migrate | |
parent | e8feb32f8d28de9a6a5e0e0b940f56cd1c53bd3c (diff) | |
download | sqlalchemy-migrate-330b0ad2ec9230d7ae39ed6198fd27a53c04e3f2.tar.gz |
remove debug output and swearing
Diffstat (limited to 'migrate')
-rw-r--r-- | migrate/versioning/util/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
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. |