aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
diff options
context:
space:
mode:
authorGravatar Wonicon <conciselove@outlook.com>2015-09-25 21:19:27 +0800
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-26 15:23:45 +0200
commit4f3ff3d77f5f46adc7621316138aa0173db25c22 (patch)
tree7c83f371eff94b287eb7e0c78a3516f0cd8a1308 /share/tools
parent5bb81461f60ae8ff869b1247633e99a0849d577a (diff)
Correct the comment on the default path
According to the newer code below: xdg_data_home = os.getenv('XDG_DATA_HOME', '~/.local/share') the actual default path is ~/.local/share/fish/generated_completions/
Diffstat (limited to 'share/tools')
-rwxr-xr-xshare/tools/create_manpage_completions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/create_manpage_completions.py b/share/tools/create_manpage_completions.py
index 376156ae..a4c31ba7 100755
--- a/share/tools/create_manpage_completions.py
+++ b/share/tools/create_manpage_completions.py
@@ -971,7 +971,7 @@ if __name__ == "__main__":
sys.exit(0)
if not WRITE_TO_STDOUT and not output_directory:
- # Default to ~/.config/fish/generated_completions/
+ # Default to ~/.local/share/fish/generated_completions/
# Create it if it doesn't exist
xdg_data_home = os.getenv('XDG_DATA_HOME', '~/.local/share')
output_directory = os.path.expanduser(xdg_data_home + '/fish/generated_completions/')