Skip to content

Commit dfcba08

Browse files
authored
Lowercase command name before resolving page (#176)
1 parent d872269 commit dfcba08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tldr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ def main() -> None:
506506
plain=options.markdown)
507507
else:
508508
try:
509-
command = '-'.join(options.command)
509+
command = '-'.join(options.command).lower()
510510
result = get_page(
511511
command,
512512
options.source,

0 commit comments

Comments
 (0)