##// END OF EJS Templates
convert: fix svn crash when svn.ra.get_log calls back with orig_paths=None...
Mads Kiilerich -
r20057:d54467c1 stable
parent child Browse files
Show More
@@ -91,10 +91,11 b' def get_log_child(fp, url, paths, start,'
91 discover_changed_paths=True, strict_node_history=False):
91 discover_changed_paths=True, strict_node_history=False):
92 protocol = -1
92 protocol = -1
93 def receiver(orig_paths, revnum, author, date, message, pool):
93 def receiver(orig_paths, revnum, author, date, message, pool):
94 paths = {}
94 if orig_paths is not None:
95 if orig_paths is not None:
95 for k, v in orig_paths.iteritems():
96 for k, v in orig_paths.iteritems():
96 orig_paths[k] = changedpath(v)
97 paths[k] = changedpath(v)
97 pickle.dump((orig_paths, revnum, author, date, message),
98 pickle.dump((paths, revnum, author, date, message),
98 fp, protocol)
99 fp, protocol)
99
100
100 try:
101 try:
General Comments 0
You need to be logged in to leave comments. Login now