diff options
Diffstat (limited to 'coverage/files.py')
-rw-r--r-- | coverage/files.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/files.py b/coverage/files.py index afb0dbf5..3cf87faa 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -137,9 +137,9 @@ if env.WINDOWS: return actpath else: - def actual_path(filename): + def actual_path(path): """The actual path for non-Windows platforms.""" - return filename + return path @contract(returns='unicode') |