diff --git a/autopep8.py b/autopep8.py index 35f057e6..ad83e913 100755 --- a/autopep8.py +++ b/autopep8.py @@ -3022,8 +3022,8 @@ def run(self, indent_size=DEFAULT_INDENT_SIZE): if have == _leading_space_count(lines[jline]): want = jlevel * indent_size break - if want < 0: # Maybe it's a hanging - # comment like this one, + # Maybe it's a hanging comment like this one, + if want < 0: # in which case we should shift it like its base # line got shifted. for j in range(i - 1, -1, -1):