-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Currently, an applescript is generated as a string. Nothing too complex to it. The problem is that it's easy to miss out a space here or there
self.applescript = f"display dialog {quotify(text)} "
# Notice the space at the endIt may be better to do something like
self.applescript = ["display dialog", quotify(text)]
...
# Adding title
self.applescript.extend(["with title", quotify(title)])Then using a loop, create the applescript and appropriately put spaces
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels