##// END OF EJS Templates
fsmonitor: correct an error message...
Jun Wu -
r33764:dd35abc4 default
parent child Browse files
Show More
@@ -825,7 +825,7 b' class client(object):'
825 825 p = subprocess.Popen(cmd, **args)
826 826
827 827 except OSError as e:
828 raise WatchmanError('"watchman" executable not in PATH (%s)', e)
828 raise WatchmanError('"watchman" executable not in PATH (%s)' % e)
829 829
830 830 stdout, stderr = p.communicate()
831 831 exitcode = p.poll()
General Comments 0
You need to be logged in to leave comments. Login now