diff options
Diffstat (limited to 'checkers/imports.py')
-rw-r--r-- | checkers/imports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/imports.py b/checkers/imports.py index 2b61cf4..5939a2a 100644 --- a/checkers/imports.py +++ b/checkers/imports.py @@ -86,7 +86,7 @@ def repr_tree_defs(data, indent_str=None): lines.append('%s %s' % (mod, files)) sub_indent_str = ' ' else: - lines.append('%s\-%s %s' % (indent_str, mod, files)) + lines.append(r'%s\-%s %s' % (indent_str, mod, files)) if i == len(nodes)-1: sub_indent_str = '%s ' % indent_str else: |