Преглед изворни кода

Merge pull request #40 from myint/division

Use correct integer division
Matthew Wang пре 10 година
родитељ
комит
0c9f80852d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      cdiff.py

+ 1
- 1
cdiff.py Прегледај датотеку

@@ -508,7 +508,7 @@ class DiffMarker(object):
508 508
                 # [terminal size minus the line number columns and 3 separating
509 509
                 # spaces
510 510
                 #
511
-                width = (terminal_size()[0] - num_width * 2 - 3) / 2
511
+                width = (terminal_size()[0] - num_width * 2 - 3) // 2
512 512
             except Exception:
513 513
                 # If terminal detection failed, set back to default
514 514
                 width = 80