##// END OF EJS Templates
convert: avoid closing ui.fout in subversion code (issue5807)...
Sascha Nemecek -
r36529:d697e39f default
parent child Browse files
Show More
@@ -149,7 +149,7 b' def get_log_child(fp, url, paths, start,'
149 pickle.dump(str(inst), fp, protocol)
149 pickle.dump(str(inst), fp, protocol)
150 else:
150 else:
151 pickle.dump(None, fp, protocol)
151 pickle.dump(None, fp, protocol)
152 fp.close()
152 fp.flush()
153 # With large history, cleanup process goes crazy and suddenly
153 # With large history, cleanup process goes crazy and suddenly
154 # consumes *huge* amount of memory. The output file being closed,
154 # consumes *huge* amount of memory. The output file being closed,
155 # there is no need for clean termination.
155 # there is no need for clean termination.
General Comments 0
You need to be logged in to leave comments. Login now