Webconfig: It's abbr --erase, not abbr --remove

This was renamed in c0cf25cf0b but never
in webconfig.
This commit is contained in:
Fabian Homborg 2015-09-13 22:32:08 +02:00
parent 48874294d6
commit 7fe8a63f53

View file

@ -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: