Merge "make db-{drop,init) py3 compatible"

This commit is contained in:
Zuul 2019-03-21 06:34:04 +00:00 committed by Gerrit Code Review
commit 4a5cac564a
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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