blob: edb8089b25a3df275ba2a1869935f66657242cba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- devede_other.py.orig 2010-04-21 06:12:32.000000000 -0300
+++ devede_other.py 2010-04-21 06:14:28.000000000 -0300
@@ -233,7 +233,7 @@
def convert_to_UTF8(self,infile_n,outfile_n,origin_format):
- command_line='iconv -f '+str(origin_format)+' -t UTF8 "'+str(infile_n)+'" -o "'+str(outfile_n)+'"'
+ command_line='iconv -f '+str(origin_format)+' -t UTF-8 "'+str(infile_n)+'" > "'+str(outfile_n)+'"'
return self.launch_shell(command_line).wait()
|