Fix: erroneous iadd operator for Stats.IO
authorAntoine Busque <abusque@efficios.com>
Tue, 23 Feb 2016 01:03:23 +0000 (20:03 -0500)
committerAntoine Busque <abusque@efficios.com>
Wed, 24 Feb 2016 23:24:03 +0000 (18:24 -0500)
Signed-off-by: Antoine Busque <abusque@efficios.com>
lttnganalyses/core/stats.py

index df0de09d005ca7e8926e5fdf8088408e51d975fb..7f38d7ab584687ecbd20179dd75536a7852efe36 100644 (file)
@@ -63,5 +63,5 @@ class IO(Stats):
 
     def __iadd__(self, other):
         self.read += other.read
-        self.write += other.read
+        self.write += other.write
         return self
This page took 0.023336 seconds and 5 git commands to generate.