Add missing translation import to common.auth.py

This utility was refactored, but the refactor didn't include a
required import statement:

  Ie7e156a83006c1578c87d862cb4d1d948a800809

This wasn't caught because non of our unit tests were trying to
build authentication payloads with a bogus scope.

Change-Id: I43f72d12f3eb57af69c4b40258baa3b11d0a6a54
This commit is contained in:
Lance Bragstad 2018-11-28 14:23:41 +00:00
parent ffeb6b3ad7
commit e5d1eba024
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from keystone.i18n import _
class AuthTestMixin(object):
"""To hold auth building helper functions."""