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 | |
parent | 3cbf8f33a00d0a1a0c1d9b71f9d41047ff99652b (diff) |
Remove 'XBMC.' from built-ins
Diffstat (limited to 'tools/EventClients')
-rwxr-xr-x | tools/EventClients/Clients/Kodi Send/kodi-send.py | 2 | ||||
-rwxr-xr-x | tools/EventClients/examples/python/example_action.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/EventClients/Clients/Kodi Send/kodi-send.py b/tools/EventClients/Clients/Kodi Send/kodi-send.py index a49a4db0c1..f4a6527def 100755 --- a/tools/EventClients/Clients/Kodi Send/kodi-send.py +++ b/tools/EventClients/Clients/Kodi Send/kodi-send.py @@ -31,7 +31,7 @@ except: def usage(): print "kodi-send [OPTION] --action=ACTION" print 'Example' - print '\tkodi-send --host=192.168.0.1 --port=9777 --action="XBMC.Quit"' + print '\tkodi-send --host=192.168.0.1 --port=9777 --action="Quit"' print "Options" print "\t-?, --help\t\t\tWill bring up this message" print "\t--host=HOST\t\t\tChoose what HOST to connect to (default=localhost)" 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 |