如何避免由缩进引起的记录器文件中的额外空格

How to avoid additional whitespaces in loggerfile, caused by indentions

今天我在我的项目中应用了 PEP 8 编码约定。因此我拆分了 logger.debug 以避免 E501 line to long。这就是我现在拥有的:

def find_window():
    ...
    logger.debug("Returning a List of Window handles\
                with specified Windowtitle: {}".format(title))

到目前为止一切顺利,但坏消息是,这是我在记录器文件中得到的:

06/25/2015 02:07:20 PM - DEBUG - libs.Window on 104 : Returning a List of Window handles with specified Windowtitle: desktop: notepad

句柄后有额外的空格。我知道如果我这样做:

def find_window():
    ...
    logger.debug("Returning a List of Window handles \
with specified Windowtitle: {}".format(title))

这会工作,但它看起来很愚蠢,如果你有更多的缩进,它会更愚蠢。 我如何避免在我的日志文件中出现这些额外的空格?

logger.debug((
              "Returning a list of Window handles"
              "with specified Windowtitle: {}"
             ).format(title))

这可以是另一种方式

import re
logger.debug(re.sub('\s+', ' ', "Returning a List of Window handles\
                                 with specified Windowtitle: {}".format(title)))