From 3bae63050ac383e08d577798740f6675e8d7faee Mon Sep 17 00:00:00 2001
From: OpulentOwl <61711263+OpulentOwl@users.noreply.github.com>
Date: Sun, 3 Apr 2022 12:54:24 -0400
Subject: [PATCH] Modified the help text for the -l argument for the dump
 command. It now states the default is all languages rather than en.

---
 pokedex/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pokedex/main.py b/pokedex/main.py
index 6044d9e..d615ee9 100644
--- a/pokedex/main.py
+++ b/pokedex/main.py
@@ -114,7 +114,7 @@ def create_parser():
         help="directory to place the dumped CSV files")
     cmd_dump.add_argument(
         '-l', '--langs', dest='langs', default=None,
-        help="comma-separated list of language codes to load, 'none', or 'all' (default: en)")
+        help="comma-separated list of language codes to load, 'none', or 'all' (default: all langs)")
     cmd_dump.add_argument(
         'tables', nargs='*',
         help="list of database tables to load (default: all)")