diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-07 19:43:38 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-07 19:45:19 -0400 |
commit | deeda384471b860884ab126a1eb1a699d791b7ba (patch) | |
tree | 13c64386fd34ca7b71c57f5cf16e7d2378bcd0b7 /oslo | |
parent | 036c9b4eefa5edb47cee63b6407b7ea3f9776576 (diff) | |
download | oslo-db-deeda384471b860884ab126a1eb1a699d791b7ba.tar.gz |
Restore correct source file encodings
migration.py includes a non-ASCII character in the top source
comments, so a "coding" directive is needed. Additionally,
the word "coding" is now used in test_sqlalchemy.py instead
of "encoding".
Change-Id: Ic977b564c5de9261686503506f4edec4a8d8682d
Diffstat (limited to 'oslo')
-rw-r--r-- | oslo/db/sqlalchemy/migration.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oslo/db/sqlalchemy/migration.py b/oslo/db/sqlalchemy/migration.py index acb35df..48943cc 100644 --- a/oslo/db/sqlalchemy/migration.py +++ b/oslo/db/sqlalchemy/migration.py @@ -1,3 +1,5 @@ +# coding=utf-8 + # Copyright (c) 2013 OpenStack Foundation # All Rights Reserved. # |