From a8fec62095f290acfcada84eae8d769a07946c3d Mon Sep 17 00:00:00 2001 From: Chris Church Date: Thu, 11 Feb 2016 01:36:26 -0500 Subject: [PATCH] Flake8 fix. --- awx/api/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/fields.py b/awx/api/fields.py index 6e4922fbcb..9f9845373c 100644 --- a/awx/api/fields.py +++ b/awx/api/fields.py @@ -73,7 +73,7 @@ class EncryptedPasswordField(CharNullField): def to_representation(self, value): # Replace the actual encrypted value with the string $encrypted$. if force_text(value).startswith('$encrypted$'): - return '$encrypted$' + return '$encrypted$' return value