From fe52a0a76a0983ec5ffe10fd75e75e03fb27686e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 25 Jan 2017 16:27:58 -0500 Subject: [PATCH] this is why we have CI --- pipenv/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 31c30a47..b6d811b4 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -107,7 +107,7 @@ def ensure_proper_casing(): new_casing = proper_case(dep) # Mark casing as changed, if it did. - if new_casing =! dep: + if new_casing != dep: casing_changed = True # Replace old value with new value. @@ -124,7 +124,7 @@ def ensure_proper_casing(): new_casing = proper_case(dep) # Mark casing as changed, if it did. - if new_casing =! dep: + if new_casing != dep: casing_changed = True # Replace old value with new value.