aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-13 22:32:08 +0200
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-13 22:35:32 +0200
commit7fe8a63f532670bcdb1509808ba2ac5ed82b75ba (patch)
treeeabd828158ae17468e19129a73b707ec2f21fc4f /share/tools
parent48874294d6703b896103db32bc1c31837d74b88a (diff)
Webconfig: It's abbr --erase, not abbr --remove
This was renamed in c0cf25cf0b28969dd9ef821f7952f42783ed6720 but never in webconfig.
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 c122f587..25553a28 100755
--- a/share/tools/web_config/webconfig.py
+++ b/share/tools/web_config/webconfig.py
@@ -702,7 +702,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
return result
def do_remove_abbreviation(self, abbreviation):
- out, err = run_fish_cmd('abbr --remove %s' % abbreviation['word'])
+ out, err = run_fish_cmd('abbr --erase %s' % abbreviation['word'])
if out or err:
return err
else: