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
master
Iain Lane 8 years ago committed by Martin Pitt
parent af7c96142d
commit 8e0405d2e2

@ -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…
Cancel
Save