Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mac
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-07-24 13:33:05 +0300
committerlovetox <philipp@hoerist.com>2022-07-24 15:49:01 +0300
commitb0fbea240d0722c8fa5a1515ff327384f299f8b1 (patch)
treee5689a84fc99c88c25d713e4fdce5c3ede88ee6c /mac
parent1514becae21286a3763927d9f24b258531762afc (diff)
refactor: Use single quotes
Diffstat (limited to 'mac')
-rwxr-xr-xmac/makebundle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/makebundle.py b/mac/makebundle.py
index 87726dfaf..246cbc6aa 100755
--- a/mac/makebundle.py
+++ b/mac/makebundle.py
@@ -7,8 +7,8 @@ from subprocess import run, check_output, CalledProcessError
if __name__ == '__main__':
if not os.path.isdir('mac'):
- sys.exit("can't find the 'mac' directory. make sure you run "
- "this script from the project root")
+ sys.exit('Unable to find "mac" directory. make sure you run '
+ 'this script from the project root')
parser = ArgumentParser(description='Create a macOS .app bundle. '
'Requires PyInstaller and hdiutil (macOS).')