def write_latex(): print("Load data") with open_ensure_dir(settings.DOC_TEX_DATA, 'rb') as output_file: output_tex = pickle.load(output_file) print('Print documentation') with open_ensure_dir(settings.DOC_LATEX_FILE, 'wb') as doc: content = documentation.latex(output_tex) content = content.encode('utf-8') doc.write(content)
def write_latex(): print "Load data" with open_ensure_dir(settings.DOC_TEX_DATA, "r") as output_tex_file: output_tex = pickle.load(output_tex_file) print "Print documentation" with open_ensure_dir(settings.DOC_LATEX_FILE, "w") as doc: content = documentation.latex(output_tex) content = content.encode("utf-8") doc.write(content)
def write_latex(): print "Load data" with open(settings.DOC_TEX_DATA, 'r') as output_tex_file: output_tex = pickle.load(output_tex_file) print 'Print documentation' with open(settings.DOC_LATEX_FILE, 'w') as doc: content = documentation.latex(output_tex) content = content.encode('utf-8') doc.write(content)