summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/versions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/versions.py b/pym/portage/versions.py
index 25b373e17..95d7340a3 100644
--- a/pym/portage/versions.py
+++ b/pym/portage/versions.py
@@ -245,7 +245,7 @@ def pkgsplit(mypkg,silent=1):
#names can't have versiony looking parts
myval=["-".join(myparts[:verPos]),myparts[verPos],revision]
pkgcache[mypkg]=myval
- return myval
+ return myval[:]
else:
pkgcache[mypkg]=None
return None
@@ -289,7 +289,7 @@ def catpkgsplit(mydata,silent=1):
return None
retval.extend(p_split)
catcache[mydata]=retval
- return retval
+ return retval[:]
def catsplit(mydep):
return mydep.split("/", 1)