From d5687bc418664bd05e4034a1beea603890128f5e Mon Sep 17 00:00:00 2001 From: John Chilton Date: Wed, 14 Feb 2018 08:27:55 -0500 Subject: [PATCH] PEP8 fixes. --- lib/galaxy/webapps/galaxy/api/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/galaxy/webapps/galaxy/api/users.py b/lib/galaxy/webapps/galaxy/api/users.py index 60b92ea40b5..6f8d125610e 100644 --- a/lib/galaxy/webapps/galaxy/api/users.py +++ b/lib/galaxy/webapps/galaxy/api/users.py @@ -710,14 +710,14 @@ class UserAPIController(BaseAPIController, UsesTagsMixin, CreatesUsersMixin, Cre errors['%s|%s' % (filter_type, filter_name)] = 'Filter function not found.' short_description, description = None, None - doc_string = docstring_trim( function.__doc__ ) + doc_string = docstring_trim(function.__doc__) split = doc_string.split('\n\n') if split: short_description = split[0] if len(split) > 1: description = split[1] else: - log.warning( 'No description specified in the __doc__ string for %s.' % filter_name ) + log.warning('No description specified in the __doc__ string for %s.' % filter_name) filter_inputs.append({ 'type': 'boolean',