diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-12-11 12:47:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-12-12 14:50:07 +0100 |
commit | 617b4bc84eb82022fd792b1aa59cc4c5e3d18b44 (patch) | |
tree | 8ee3bd1c9913b854e06b394ccb06725b9f8fdaf3 /android | |
parent | 56ff7f7789cc914cef705b069553ad4f38f6b9c5 (diff) |
Make android/mobile-config.py compatible with Python 3
Change-Id: I079c4efd28e7e0d10ca6edf242ddd85b9294db08
Reviewed-on: https://gerrit.libreoffice.org/64962
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'android')
-rwxr-xr-x | android/mobile-config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/mobile-config.py b/android/mobile-config.py index c4be1e3c4028..ba892846e548 100755 --- a/android/mobile-config.py +++ b/android/mobile-config.py @@ -65,14 +65,14 @@ if __name__ == '__main__': size = len(ET.tostring(child)); key = '%s/%s' % (package, section) if key in main_xcd_discard: - print 'removed %s - saving %d' % (key, size) + print('removed %s - saving %d' % (key, size)) saved = saved + size to_remove.append(child) for child in to_remove: root.remove(child) - print "saved %d of %d bytes: %2.f%%" % (saved, total, saved*100.0/total) + print("saved %d of %d bytes: %2.f%%" % (saved, total, saved*100.0/total)) # Don't do pointless Word -> Writer and similar conversions when we have no UI. nsDict = { |