Merge "Fix keystone-credential-cleanup job with Python 3"
This commit is contained in:
commit
a326c8b448
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user