Replace an instance of keystone/openstack/common/timeutils

There was an instance of timeutils from the sycn'ed code in:
keystone/contrib/federation/idp.py, we should replace is with
oslo.utils.

Change-Id: I5a208903d6810d8f2d43fc710874f6d8463e2150
This commit is contained in:
Steve Martinelli 2014-10-04 02:32:49 -04:00
parent 7e1289244e
commit 4f9add8029
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,7 @@ import os
import subprocess import subprocess
import uuid import uuid
from oslo.utils import timeutils
import saml2 import saml2
from saml2 import md from saml2 import md
from saml2 import saml from saml2 import saml
@ -27,7 +28,6 @@ from keystone import exception
from keystone.i18n import _, _LE from keystone.i18n import _, _LE
from keystone.openstack.common import fileutils from keystone.openstack.common import fileutils
from keystone.openstack.common import log from keystone.openstack.common import log
from keystone.openstack.common import timeutils
LOG = log.getLogger(__name__) LOG = log.getLogger(__name__)