diff --git a/evoque/common/utils.py b/evoque/common/utils.py index ef815af..4141eb9 100644 --- a/evoque/common/utils.py +++ b/evoque/common/utils.py @@ -29,8 +29,9 @@ def safe_rstrip(value, chars=None): :return: Stripped value. """ if not isinstance(value, six.string_types): - LOG.warn(_LW("Failed to remove trailing character. Returning original " - "object. Supplied object is not a string: %s,"), value) + LOG.warn(_LW("Failed to remove trailing character. Returning " + "original object. Supplied object is not a string: %s,"), + value) return value return value.rstrip(chars) or value