diff options
author | Hector Martin | 2009-08-14 01:51:17 +0200 |
---|---|---|
committer | Hector Martin | 2009-08-14 01:51:17 +0200 |
commit | 0f46b4f59fbcadd3a25cab75a1fc19fea07e02b0 (patch) | |
tree | 8de24dc1513d291754fdb80d8cd1c491aa8c082e /python-client/usbmux.py | |
parent | 882543b1e42a960b714fa3aa9b05f9029513b5c1 (diff) | |
download | usbmuxd-0f46b4f59fbcadd3a25cab75a1fc19fea07e02b0.tar.gz usbmuxd-0f46b4f59fbcadd3a25cab75a1fc19fea07e02b0.tar.bz2 |
python stuff: default to /var/run/usbmuxd on linux and make it configurable
Diffstat (limited to 'python-client/usbmux.py')
-rw-r--r-- | python-client/usbmux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python-client/usbmux.py b/python-client/usbmux.py index 8b0270d..47112d3 100644 --- a/python-client/usbmux.py +++ b/python-client/usbmux.py @@ -214,7 +214,7 @@ class USBMux(object): if sys.platform == 'darwin': socketpath = "/var/run/usbmuxd" else: - socketpath = "/tmp/usbmuxd" + socketpath = "/var/run/usbmuxd" self.socketpath = socketpath self.listener = MuxConnection(socketpath, BinaryProtocol) try: |