Explorar el Código

Rename variable

Steven Myint hace 12 años
padre
commit
f1563b283e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/cdiff.py

+ 1
- 1
src/cdiff.py Ver fichero

@@ -535,7 +535,7 @@ if __name__ == '__main__':
535 535
         diff_hdl = sys.stdin
536 536
 
537 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 540
     # Don't let empty diff pass thru
541 541
     if not stream: