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