[Mpuls-commits] r4202 - in base/trunk: . mpulsweb/lib

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Nov 16 18:35:37 CET 2010


Author: bh
Date: 2010-11-16 18:35:37 +0100 (Tue, 16 Nov 2010)
New Revision: 4202

Modified:
   base/trunk/ChangeLog
   base/trunk/mpulsweb/lib/export.py
Log:
* mpulsweb/lib/export.py (MyStringIO.real_close): Actually call
the real close method, i.e. the one from the base class.


Modified: base/trunk/ChangeLog
===================================================================
--- base/trunk/ChangeLog	2010-11-16 16:55:19 UTC (rev 4201)
+++ base/trunk/ChangeLog	2010-11-16 17:35:37 UTC (rev 4202)
@@ -1,5 +1,10 @@
 2010-11-16  Bernhard Herzog  <bh at intevation.de>
 
+	* mpulsweb/lib/export.py (MyStringIO.real_close): Actually call
+	the real close method, i.e. the one from the base class.
+
+2010-11-16  Bernhard Herzog  <bh at intevation.de>
+
 	* mpulsweb/controllers/evaluate.py (get_search_options): Fetch
 	type_ending defaults from config and copy previously values from
 	soptions.

Modified: base/trunk/mpulsweb/lib/export.py
===================================================================
--- base/trunk/mpulsweb/lib/export.py	2010-11-16 16:55:19 UTC (rev 4201)
+++ base/trunk/mpulsweb/lib/export.py	2010-11-16 17:35:37 UTC (rev 4202)
@@ -21,7 +21,7 @@
         pass
 
     def real_close(self):
-        MyStringIO.close(self)
+        StringIO.close(self)
 
 
 class FakeStr(str):



More information about the Mpuls-commits mailing list