diff options
author | Aylur <[email protected]> | 2025-02-27 14:58:40 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2025-02-27 15:04:40 +0100 |
commit | 98a488d0efe520533316b0df32386d9b40c2ef17 (patch) | |
tree | 4decb9c8be264c69901e504132c1039d29666f13 /examples/gtk3/py/simple-bar/app.py | |
parent | b7f10b99bc810e7ad6a949d6670cb440d33045a0 (diff) |
rename: message -> request
the same thing was called either message or request
now its only referred to as a request
Diffstat (limited to 'examples/gtk3/py/simple-bar/app.py')
-rwxr-xr-x | examples/gtk3/py/simple-bar/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gtk3/py/simple-bar/app.py b/examples/gtk3/py/simple-bar/app.py index d95dc0e..ba3a910 100755 --- a/examples/gtk3/py/simple-bar/app.py +++ b/examples/gtk3/py/simple-bar/app.py @@ -33,4 +33,4 @@ if __name__ == "__main__": app.acquire_socket() app.run(None) except Exception as e: - print(AstalIO.send_message(instance_name, "".join(sys.argv[1:]))) + print(AstalIO.send_request(instance_name, "".join(sys.argv[1:]))) |