Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing "r"
  • Loading branch information
myint committed Oct 17, 2014
1 parent b23186d commit b4b3a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autopep8.py
Expand Up @@ -3030,7 +3030,7 @@ def local_fix(source, start_log, end_log,

# Remove indent from comments.
for i, line in enumerate(subsource):
if i + 1 not in msl and re.match("\s*#", line):
if i + 1 not in msl and re.match(r"\s*#", line):
if line.index("#") >= ind:
subsource[i] = line[ind:]
else:
Expand Down

0 comments on commit b4b3a8a

Please sign in to comment.