summaryrefslogtreecommitdiffstats
path: root/TOOLS/osxbundle.py
diff options
context:
space:
mode:
authorjnozsc <jnozsc@gmail.com>2020-02-27 11:46:42 -0800
committerwm4 <1387750+wm4@users.noreply.github.com>2020-02-27 21:36:21 +0100
commit611c92ef1db2efa5c2f548c8ae3aa4072bbe67a8 (patch)
treec67b4d00cacf7576690e3e23ebc4f366a27aaed2 /TOOLS/osxbundle.py
parentc4440db7448ab8b64103af46e7ffb38e3e57bc0e (diff)
downloadmpv-611c92ef1db2efa5c2f548c8ae3aa4072bbe67a8.tar.bz2
mpv-611c92ef1db2efa5c2f548c8ae3aa4072bbe67a8.tar.xz
*.py: cosmetic changes
Diffstat (limited to 'TOOLS/osxbundle.py')
-rwxr-xr-xTOOLS/osxbundle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/osxbundle.py b/TOOLS/osxbundle.py
index 49a0a98e53..f164b2b3b1 100755
--- a/TOOLS/osxbundle.py
+++ b/TOOLS/osxbundle.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+from __future__ import print_function
import os
import shutil
import sys
@@ -37,7 +37,7 @@ def copy_binary(binary_name):
def apply_plist_template(plist_file, version):
for line in fileinput.input(plist_file, inplace=1):
- print (line.rstrip().replace('${VERSION}', version))
+ print(line.rstrip().replace('${VERSION}', version))
def create_bundle_symlink(binary_name, symlink_name):
os.symlink(os.path.basename(binary_name),