| Index: remoting/host/linux/linux_me2me_host.py
|
| diff --git a/remoting/host/linux/linux_me2me_host.py b/remoting/host/linux/linux_me2me_host.py
|
| index 9c80e789fea03b45f8023609b0e08d11677e9f38..ff284ea7d7f898d1e1c6977590a57d76878d86dc 100755
|
| --- a/remoting/host/linux/linux_me2me_host.py
|
| +++ b/remoting/host/linux/linux_me2me_host.py
|
| @@ -1092,9 +1092,6 @@ Web Store: https://chrome.google.com/remotedesktop"""
|
| action="store", metavar="USER",
|
| help="Adds the specified user to the chrome-remote-desktop "
|
| "group (must be run as root).")
|
| - parser.add_option("", "--host-version", dest="host_version", default=False,
|
| - action="store_true",
|
| - help="Prints version of the host.")
|
| parser.add_option("", "--watch-resolution", dest="watch_resolution",
|
| type="int", nargs=2, default=False, action="store",
|
| help=optparse.SUPPRESS_HELP)
|
| @@ -1190,10 +1187,6 @@ Web Store: https://chrome.google.com/remotedesktop"""
|
|
|
| return 0
|
|
|
| - if options.host_version:
|
| - # TODO(sergeyu): Also check RPM package version once we add RPM package.
|
| - return os.system(locate_executable(HOST_BINARY_NAME) + " --version") >> 8
|
| -
|
| if options.watch_resolution:
|
| watch_for_resolution_changes(options.watch_resolution)
|
| return 0
|
|
|