Merge "Fix keystone-credential-cleanup job with Python 3"

This commit is contained in:
Zuul 2019-09-11 19:52:59 +00:00 committed by Gerrit Code Review
commit a326c8b448

View File

@ -23,7 +23,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