diff options
| -rw-r--r-- | pym/gentoolkit/helpers.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/gentoolkit/helpers.py b/pym/gentoolkit/helpers.py index a87b9f2..5d45288 100644 --- a/pym/gentoolkit/helpers.py +++ b/pym/gentoolkit/helpers.py @@ -312,11 +312,11 @@ class FileOwner(object): osp = os.path expanded_paths = [] - for p in paths: - if p.startswith('./'): - expanded_paths.append(osp.abspath(p)) + for path in paths: + if path.startswith('./'): + expanded_paths.append(osp.abspath(path)) else: - expanded_paths.append(p) + expanded_paths.append(path) return expanded_paths |
