web/views/__init__.py
changeset 2487 c4c13cf8cd7b
parent 2469 b87c4d150e09
child 2491 95eada71bb23
--- a/web/views/__init__.py	Fri Jul 24 15:13:44 2009 +0200
+++ b/web/views/__init__.py	Fri Jul 24 15:20:14 2009 +0200
@@ -111,7 +111,7 @@
 
     def cell_call(self, row=0, col=0):
         self.row, self.col = row, col # in case one need it
-        tmpfile = tempfile.mkstemp('.png')
+        _, tmpfile = tempfile.mkstemp('.png')
         try:
             self._generate(tmpfile)
             self.w(open(tmpfile).read())