From 7ffdafd91aab97a92099ca5455bc199f2a047d0a Mon Sep 17 00:00:00 2001 From: Ionel Cristian M?rie? Date: Sat, 6 Jun 2015 19:17:41 +0000 Subject: Correct path normalization on Windows: the drive was not normalized (different inputs like "c:\asdf" and "C:\asdf" did not return the same path). --- coverage/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index f7fc969..1feb9b6 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -64,7 +64,7 @@ if env.WINDOWS: head, tail = os.path.split(path) if not tail: - actpath = head + actpath = head.upper() elif not head: actpath = tail else: -- cgit v1.2.1