summaryrefslogtreecommitdiffstats
path: root/pym/xpak.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/xpak.py')
-rw-r--r--pym/xpak.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/xpak.py b/pym/xpak.py
index 46cdfd8df..9c2907ff9 100644
--- a/pym/xpak.py
+++ b/pym/xpak.py
@@ -110,7 +110,7 @@ def xsplit(infile):
splits = xsplit_mem(mydat)
if not splits:
- return
+ return False
myfile=open(infile+".index","w")
myfile.write(splits[0])
@@ -118,7 +118,7 @@ def xsplit(infile):
myfile=open(infile+".dat","w")
myfile.write(splits[1])
myfile.close()
- return
+ return True
def xsplit_mem(mydat):
if mydat[0:8]!="XPAKPACK":