Skip to content

Commit

Permalink
Stop force-lowercase on run_line
Browse files Browse the repository at this point in the history
  • Loading branch information
logandhillon committed Aug 9, 2024
1 parent c75c32a commit e08c775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bdsh.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def run_line(self, line: str):
if line == "":
return

args = line.lower().split(' ')
args = line.split(' ')

if args[0] in self.definitions:
self.run_line(self.definitions[args[0]] + ' '.join(args[1:]))
Expand Down

0 comments on commit e08c775

Please sign in to comment.