48
52
# Still in the header - dump content straight to output
52
59
def open_topic_file(out_file, out_dir, release):
53
60
topic_name = release.replace(' ', '-')
55
62
topic_path = os.path.join(out_dir, "%s.txt" % (topic_name,))
56
63
result = open(topic_path, 'w')
57
64
result.write("%s\n" % (release,))