aboutsummaryrefslogtreecommitdiff
path: root/tools/EventClients
diff options
context:
space:
mode:
authorronie <ronie@poedel.net>2014-10-25 15:07:35 +0200
committerronie <ronie@poedel.net>2014-10-25 15:07:35 +0200
commit4772e5f6758ac4b1e27d111d0edebe3306869db3 (patch)
treeb7a1d8dfbc3b96a2e843219522eac0728ca80f64 /tools/EventClients
parent3cbf8f33a00d0a1a0c1d9b71f9d41047ff99652b (diff)
Remove 'XBMC.' from built-ins
Diffstat (limited to 'tools/EventClients')
-rwxr-xr-xtools/EventClients/Clients/Kodi Send/kodi-send.py2
-rwxr-xr-xtools/EventClients/examples/python/example_action.py2
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