From 5f4265d53540aca7274b564fc3d863227f0da99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= 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). --HG-- branch : ionelmc/correct-path-normalization-on-windows-th-1433618255921 --- 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 f7fc9693..1feb9b68 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