Index: remoting/tools/me2me_virtual_host.py |
diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py |
index 73c34fdfed1c12db13a4bf3ede5644aad6ff035b..6b4095fd8d940485919b3dde9877fbd20acd07a5 100755 |
--- a/remoting/tools/me2me_virtual_host.py |
+++ b/remoting/tools/me2me_virtual_host.py |
@@ -383,9 +383,9 @@ class Desktop: |
def launch_host(self, host): |
# Start remoting host |
args = [locate_executable(REMOTING_COMMAND), |
- "--host_config=%s" % (host.config_file)] |
+ "--host-config=%s" % (host.config_file)] |
if host.auth.config_file != host.config_file: |
- args.append("--auth_config=%s" % (host.auth.config_file)) |
+ args.append("--auth-config=%s" % (host.auth.config_file)) |
self.host_proc = subprocess.Popen(args, env=self.child_env) |
logging.info(args) |
if not self.host_proc.pid: |