Index: helpers.py ================================================================== --- helpers.py +++ helpers.py @@ -89,11 +89,11 @@ spfDst = (spDst + "/" + sf).strip("/ ") if os.path.isdir(spfSrc): if bRecursive: addFolderToZipAndFileFile(hZip, spfSrc, spfDst, dVars, bRecursive) else: - if spfSrc.endswith((".css", ".js", ".xcu", ".xul", ".rdf", ".dtd", ".properties")): + if spfSrc.endswith((".py", ".js", ".css", ".xcu", ".xul", ".rdf", ".dtd", ".properties")): #print(spfSrc + " > " + spfDst) hZip.writestr(spfDst, fileFile(spfSrc, dVars)) else: #print(spfSrc + " > " + spfDst) hZip.write(spfSrc, spfDst)