Merge "make db-{drop,init) py3 compatible"
This commit is contained in:
commit
4a5cac564a
@ -27,7 +27,10 @@ limitations under the License.
|
||||
|
||||
import os
|
||||
import sys
|
||||
import ConfigParser
|
||||
try:
|
||||
import ConfigParser
|
||||
except ImportError:
|
||||
import configparser as ConfigParser
|
||||
import logging
|
||||
from sqlalchemy import create_engine
|
||||
|
||||
|
@ -27,7 +27,10 @@ limitations under the License.
|
||||
|
||||
import os
|
||||
import sys
|
||||
import ConfigParser
|
||||
try:
|
||||
import ConfigParser
|
||||
except ImportError:
|
||||
import configparser as ConfigParser
|
||||
import logging
|
||||
from sqlalchemy import create_engine
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user