Steven Myint před 12 roky
rodič
revize
f1563b283e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      src/cdiff.py

+ 1
- 1
src/cdiff.py Zobrazit soubor

@@ -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: