diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-03-27 18:49:12 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-03-27 18:49:12 -0600 |
commit | b995d00e2e54bc6ff97f21bd179d1fc4dc3c92cb (patch) | |
tree | e86f783dd35f96f6c023be7ec9de0c60aaeac11f /tools/py3tool.py | |
parent | 91aa03f4a1065319e85c6ee90306971c301fd58c (diff) | |
download | numpy-b995d00e2e54bc6ff97f21bd179d1fc4dc3c92cb.tar.gz |
BUG: Rebased tools/py3tool.py was missing `,` in list.
Diffstat (limited to 'tools/py3tool.py')
-rwxr-xr-x | tools/py3tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py index 365533114..ef175ebfd 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -79,7 +79,7 @@ FIXES_TO_SKIP = [ 'apply', 'input', 'raw_input', - 'xreadlines' + 'xreadlines', 'xrange' ] |