mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-23 16:31:32 +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
This commit is contained in:
parent
b0dc9079db
commit
cc50e3a37e
@ -2926,7 +2926,7 @@ class Britney(object):
|
|||||||
while True:
|
while True:
|
||||||
# read the command from the command line
|
# read the command from the command line
|
||||||
try:
|
try:
|
||||||
user_input = input('britney> ').lower().split()
|
user_input = input('britney> ').split()
|
||||||
except EOFError:
|
except EOFError:
|
||||||
print("")
|
print("")
|
||||||
break
|
break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user