newsMoviefly - News

 
 

rel 0.12.8, 0.13, 0.14

Item posted by Uwe Mayer <merkosh> on Fri 10 Aug 2007 01:01:56 PM UTC.

Its been a long time since an update to moviefly, but here we go:

0.12.7:

(not available)


0.12.8:




0.13:




0.14: (alpha)


If you want to patch it, its pretty straight forward:

--- PyStringTemplate-2.2.old/src/stringtemplate/language/ASTExpr.py
2006-06-19 21:18:12.000000000 +0200
+++ PyStringTemplate-2.2/src/stringtemplate/language/ASTExpr.py  2007-08-08 20:51:41.000000000 +0200
@@ -477,7 +477,7 @@
                 if renderer:
                     n = out.write(renderer.str(o))
                 else:
-                    n = out.write(str(o))
+                    n = out.write(unicode(o))
                 return n
         except IOError, io:
             this.error('problem writing object: ' + o, io)



--- PyStringTemplate-2.2.old/src/stringtemplate/StringTemplate.py
2006-06-19 21:18:12.000000000 +0200
+++ PyStringTemplate-2.2/src/stringtemplate/StringTemplate.py   2007-08-08 20:51:22.000000000 +0200
@@ -115,7 +115,7 @@
         # sys.stderr.write('write(' + str(str_) + ')' + \
         #                  '; indents=' + str(self.indents) + '\n')
         n = 0
-        for c in str(str_):
+        for c in unicode(str_):
             if c == '\n':
                 self.atStartOfLine = True
             elif self.atStartOfLine:




Back to the top

Powered by Savane 3.13-3230.
Corresponding source code