From 2fafdf34eedd10022e450f79dffd42abe3694982 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 31 Jul 2016 18:55:42 -0400 Subject: [PATCH] help bad spelers Some of us can never remember the old ditty: i before e, except after c or when sounding like "a" as in neighbor or weigh. Perhaps magic wormhole can coddle us in our misorthography :) --- src/wormhole/cli/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wormhole/cli/cli.py b/src/wormhole/cli/cli.py index 2935c89..dd0c010 100644 --- a/src/wormhole/cli/cli.py +++ b/src/wormhole/cli/cli.py @@ -41,6 +41,8 @@ def _compose(*decorators): ALIASES = { "tx": "send", "rx": "receive", + "recieve": "receive", + "recv": "receive", } class AliasedGroup(click.Group): def get_command(self, ctx, cmd_name):