mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-13 23:38:20 +00:00
hint-tester: Don't lowercase the input
Doing this means that you can't use the hint tester for packages with uppercase characters in the version, e.g. Version mismatch, dreamchess 0.2.1-rc2-2build1 != 0.2.1-RC2-2build1 Closes: Debian#846141 Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
3156b2c753
commit
ccfd61cf6a
@ -2531,7 +2531,7 @@ class Britney(object):
|
||||
while True:
|
||||
# read the command from the command line
|
||||
try:
|
||||
user_input = input('britney> ').lower().split()
|
||||
user_input = input('britney> ').split()
|
||||
except EOFError:
|
||||
print("")
|
||||
break
|
||||
|
Loading…
x
Reference in New Issue
Block a user