diff numerics/write.py @ 80:8bfa28ff74ce

use that thing we made
author Jeff Hammel <k0scist@gmail.com>
date Sun, 01 Mar 2015 09:29:38 -0800
parents c70ef55b6141
children
line wrap: on
line diff
--- a/numerics/write.py	Sun Mar 01 09:19:25 2015 -0800
+++ b/numerics/write.py	Sun Mar 01 09:29:38 2015 -0800
@@ -24,7 +24,7 @@
         self.f = f
         self.writer = csv.writer(f)
 
-    def writerow(*row):
+    def writerow(self, *row):
         self.writer.writerow(row)
         self.f.flush()
     __call__ = writerow