Submitter | phabricator |
---|---|
Date | Aug. 11, 2017, 6:52 p.m. |
Message ID | <609d82de06d5b00e72376728b6f7c593@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/22895/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/fsmonitor/pywatchman/__init__.py b/hgext/fsmonitor/pywatchman/__init__.py --- a/hgext/fsmonitor/pywatchman/__init__.py +++ b/hgext/fsmonitor/pywatchman/__init__.py @@ -825,7 +825,7 @@ p = subprocess.Popen(cmd, **args) except OSError as e: - raise WatchmanError('"watchman" executable not in PATH (%s)', e) + raise WatchmanError('"watchman" executable not in PATH (%s)' % e) stdout, stderr = p.communicate() exitcode = p.poll()