diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-12-03 13:36:59 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-12-03 13:36:59 -0500 |
commit | 192d86c69d97286b2284fae39c74c1752077f798 (patch) | |
tree | cb58cb28f0623e97a517c9b33b71e8df7e0dda29 /alembic/script.py | |
parent | 2e2fc529a4db7aea2b3c70de932c983e1c0b990e (diff) | |
download | alembic-192d86c69d97286b2284fae39c74c1752077f798.tar.gz |
- Python 2.5 is supported, needs
__future__.with_statement
Diffstat (limited to 'alembic/script.py')
-rw-r--r-- | alembic/script.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alembic/script.py b/alembic/script.py index 770c650..4b7eaf2 100644 --- a/alembic/script.py +++ b/alembic/script.py @@ -1,3 +1,5 @@ +from __future__ import with_statement + import os from alembic import util import shutil |