From c36e02495899e1287ea357b6a0130ebde7d2ba1c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 11 Nov 2012 12:36:17 -0500 Subject: WTF? --- coverage/files.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index 65b1dc0..8d2a2a7 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -109,14 +109,14 @@ if sys.platform == 'win32': actual = actual.encode('utf8') return actual else: - def actual_filename(filename): - """The actual filename for non-Windows platforms.""" + def actual_path(filename): + """The actual path for non-Windows platforms.""" return filename def abs_file(filename): """Return the absolute normalized form of `filename`.""" path = os.path.abspath(os.path.realpath(filename)) - path = actual_filename(path) + path = actual_path(path) return path -- cgit v1.2.1