Ignore:
Timestamp:
05/07/12 17:31:09 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Added support for specifying the host name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/pyuipc_sim.py

    r133 r163  
    932932        self.daemon = True
    933933
    934         self._client = Client("localhost")
     934        host = sys.argv[1] if len(sys.argv)>1 else "localhost"
     935        self._client = Client(host)
    935936
    936937        self._valueHandlers = {}
Note: See TracChangeset for help on using the changeset viewer.