summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2012-11-11 11:30:20 -0500
committerW. Trevor King <wking@tremily.us>2012-11-11 16:19:50 -0500
commit4e7b58e413c46f5bbb45837a0b2351c847f17afc (patch)
tree602d10d339e45f4dd8eaf10a349037b8b4a91ac7
parentde0a97da7e7dc1086182250667126c44b11ee40d (diff)
downloadgentoolkit-4e7b58e413c46f5bbb45837a0b2351c847f17afc.tar.gz
helpers: change "p" -> "path" to avoid pylint C0103 (Invalid name "p")
-rw-r--r--pym/gentoolkit/helpers.py8
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