Submitter | phabricator |
---|---|
Date | Nov. 4, 2019, 4:26 p.m. |
Message ID | <68d61157daacbb90f0d48c1a1f0986d7@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/42711/ |
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 @@ -996,7 +996,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()