From cc50e3a37eda3350d4acf497804838bef014047f Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Mon, 28 Nov 2016 16:10:00 +0000 Subject: [PATCH] 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 --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 3652aff..7c07941 100755 --- a/britney.py +++ b/britney.py @@ -2926,7 +2926,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