浏览代码

Rename variable

Steven Myint 12 年前
父节点
当前提交
f1563b283e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/cdiff.py

+ 1
- 1
src/cdiff.py 查看文件

535
         diff_hdl = sys.stdin
535
         diff_hdl = sys.stdin
536
 
536
 
537
     # FIXME: can't use generator for now due to current implementation in parser
537
     # FIXME: can't use generator for now due to current implementation in parser
538
-    stream = [decode(l) for l in diff_hdl.readlines()]
538
+    stream = [decode(line) for line in diff_hdl.readlines()]
539
 
539
 
540
     # Don't let empty diff pass thru
540
     # Don't let empty diff pass thru
541
     if not stream:
541
     if not stream: