diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-25 15:53:29 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-25 15:53:29 -0500 |
commit | 7622c2bfc0e4a4f6f2c29add7b729d14638258b3 (patch) | |
tree | 5da5683c1cc8d24d576dd62c4aa48e03bb85a1de /tests/__init__.py | |
parent | 2f6a6c096b970fdc2cd1f75cde5d54587206e200 (diff) | |
download | alembic-7622c2bfc0e4a4f6f2c29add7b729d14638258b3.tar.gz |
- migrate to ArgParse
- long lines/whitespace
- fix "list_templates"
- will support py3k immediately
Diffstat (limited to 'tests/__init__.py')
-rw-r--r-- | tests/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py index 6086931..7c97f2a 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -18,7 +18,8 @@ def _get_dialect(name): def assert_compiled(element, assert_string, dialect=None): dialect = _get_dialect(dialect) eq_( - unicode(element.compile(dialect=dialect)).replace("\n", "").replace("\t", ""), + unicode(element.compile(dialect=dialect)).\ + replace("\n", "").replace("\t", ""), assert_string.replace("\n", "").replace("\t", "") ) |