summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/xpak.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/xpak.py b/pym/xpak.py
index 375ad22b6..dff1ab70e 100644
--- a/pym/xpak.py
+++ b/pym/xpak.py
@@ -154,7 +154,7 @@ def getboth(infile):
myindex=myfile.read(indexsize)
mydata=myfile.read(datasize)
myfile.close()
- return [myindex,mydata]
+ return myindex, mydata
def listindex(myindex):
"""Print to the terminal the filenames listed in the indexglob passed in."""
@@ -417,5 +417,5 @@ class tbz2:
mydata =a.read(self.datasize)
a.close()
- return [self.index[:],mydata]
+ return self.index, mydata