From 3c5af9a06948e88b7c6618e95af30e4f871bebbe Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Mon, 12 Sep 2016 16:31:19 +0000 Subject: [PATCH] Remove unused method from keystone.common.utils The strtime() method doens't seem to be used anywhere in keystone or its tests. Change-Id: Ic00191de812d4f81bdc0e85712346a6c719eb906 --- keystone/common/utils.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/keystone/common/utils.py b/keystone/common/utils.py index 9ef659f27..f9f955b80 100644 --- a/keystone/common/utils.py +++ b/keystone/common/utils.py @@ -536,11 +536,6 @@ def isotime(at=None, subsecond=False): return st -def strtime(): - at = timeutils.utcnow() - return at.strftime(timeutils.PERFECT_TIME_FORMAT) - - def get_token_ref(context): """Retrieve KeystoneToken object from the auth context and returns it.