Browse Source

Rename variable

Steven Myint 12 years ago
parent
commit
f1563b283e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/cdiff.py

+ 1
- 1
src/cdiff.py View File

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: