Fixes for translation utils

This commit is contained in:
Samuel Mehrbrodt 2014-05-22 13:52:53 +02:00
parent de528e7c41
commit eb5f0b7dd4

View File

@ -175,7 +175,7 @@ def run(command):
process = QtCore.QProcess() process = QtCore.QProcess()
process.start(command) process.start(command)
while process.waitForReadyRead(): while process.waitForReadyRead():
print_verbose('ReadyRead: %s' % QtCore.QString(process.readAll())) print_verbose('ReadyRead: %s' % process.readAll())
print_verbose('Error(s):\n%s' % process.readAllStandardError()) print_verbose('Error(s):\n%s' % process.readAllStandardError())
print_verbose('Output:\n%s' % process.readAllStandardOutput()) print_verbose('Output:\n%s' % process.readAllStandardOutput())
@ -261,7 +261,7 @@ def prepare_project():
lines.append('TRANSLATIONS += %s' % line) lines.append('TRANSLATIONS += %s' % line)
lines.sort() lines.sort()
file = open(os.path.join(start_dir, 'openlp.pro'), 'w') file = open(os.path.join(start_dir, 'openlp.pro'), 'w')
file.write('\n'.join(lines).encode('utf8')) file.write('\n'.join(lines))
file.close() file.close()
print_quiet(' Done.') print_quiet(' Done.')