Skip to content

Commit

Permalink
fix: Add back missing commands aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Dec 30, 2020
1 parent cf8a63f commit cd25e78
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/aria2p/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,11 @@ def main(args: Optional[List[str]] = None) -> int:
"top": subcommand_top,
"call": subcommand_call,
"add": subcommand_add,
"add-magnet": subcommand_add_magnets, # alias for add-magnets
"add-magnets": subcommand_add_magnets,
"add-torrent": subcommand_add_torrents, # alias for add-torrents
"add-torrents": subcommand_add_torrents,
"add-metalink": subcommand_add_metalinks, # alias for add-metalinks
"add-metalinks": subcommand_add_metalinks,
"pause": subcommand_pause,
"stop": subcommand_pause, # alias for pause
Expand Down

0 comments on commit cd25e78

Please sign in to comment.