diff options
author | ronie <ronie@poedel.net> | 2014-10-25 15:07:35 +0200 |
---|---|---|
committer | ronie <ronie@poedel.net> | 2014-10-25 15:07:35 +0200 |
commit | 4772e5f6758ac4b1e27d111d0edebe3306869db3 (patch) | |
tree | b7a1d8dfbc3b96a2e843219522eac0728ca80f64 /tools/EventClients/examples/python | |
parent | 3cbf8f33a00d0a1a0c1d9b71f9d41047ff99652b (diff) |
Remove 'XBMC.' from built-ins
Diffstat (limited to 'tools/EventClients/examples/python')
-rwxr-xr-x | tools/EventClients/examples/python/example_action.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/EventClients/examples/python/example_action.py b/tools/EventClients/examples/python/example_action.py index d5ab9cf61c..2e84bc1573 100755 --- a/tools/EventClients/examples/python/example_action.py +++ b/tools/EventClients/examples/python/example_action.py @@ -27,7 +27,7 @@ def main(): xbmc.send_action(sys.argv[1], ACTION_EXECBUILTIN) except Exception, e: print str(e) - xbmc.send_action("XBMC.ActivateWindow(ShutdownMenu)") + xbmc.send_action("ActivateWindow(ShutdownMenu)") # ok we're done, close the connection |