|
|
@ -3,7 +3,6 @@ import sys |
|
|
|
import os |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ZipReplace: |
|
|
|
|
|
|
|
def __init__(self, search_string, replace_string): |
|
|
@ -11,12 +10,12 @@ class ZipReplace: |
|
|
|
self.replace_string = replace_string |
|
|
|
|
|
|
|
def process(self, zipprocessor): |
|
|
|
"perform a search and replace on all files in the temporary directory" |
|
|
|
"""perform a search and replace on all files in the temporary directory""" |
|
|
|
for filename in os.listdir(zipprocessor.temp_directory): |
|
|
|
with open(zipprocessor._full_filename(filename)) as file: |
|
|
|
contents = file.read() |
|
|
|
contents = contents.replace(self.search_string, |
|
|
|
self.replace_string) |
|
|
|
self.replace_string) |
|
|
|
with open(zipprocessor._full_filename(filename), "w") as file: |
|
|
|
file.write(contents) |
|
|
|
|
|
|
|