aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
diff options
context:
space:
mode:
authorGravatar CoolOppo <CoolOppo@users.noreply.github.com>2016-05-11 18:07:46 -0400
committerGravatar Kurtis Rader <krader@skepticism.us>2016-05-11 19:51:08 -0700
commit3daccf3c22c63d9480df563d1cddd72f9ae3b221 (patch)
treebb793594344672eb27fbb7f83940a4e86d3f6cf0 /share/tools
parentc63c88262baee0a1a0427c1b8b1a3fac2b2ceee5 (diff)
fix typo in webconfig.py comment
Diffstat (limited to 'share/tools')
-rwxr-xr-xshare/tools/web_config/webconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/web_config/webconfig.py b/share/tools/web_config/webconfig.py
index ee517440..78275170 100755
--- a/share/tools/web_config/webconfig.py
+++ b/share/tools/web_config/webconfig.py
@@ -893,7 +893,7 @@ fish_bin_path = None
if not fish_bin_dir:
print('The __fish_bin_dir environment variable is not set. Looking in $PATH...')
# distutils.spawn is terribly broken, because it looks in wd before PATH,
- # and doesn't actually validate that the file is even executabl
+ # and doesn't actually validate that the file is even executable
for p in os.environ['PATH'].split(os.pathsep):
proposed_path = os.path.join(p, 'fish')
if os.access(proposed_path, os.X_OK):