On 2007-09-15 00:32:15 +0200, David Kågedal wrote: > @@ -436,7 +422,13 @@ class Series(PatchSet): > patch = patch.strip() > os.rename(os.path.join(branch_dir, patch), > os.path.join(patch_dir, patch)) > - Patch(patch, patch_dir, refs_base).update_top_ref() > + topfield = os.path.join(patch_dir, patch, 'top') > + if os.path.isfile(topfield): > + top = read_string(topfield, False) > + else: > + top = None > + if top: > + git.set_ref(refs_base + '/' + patch, top) > set_format_version(1) > > # Update 1 -> 2. And remove the top file, maybe? (Or I may be mistaken; I don't have a copy of the surrounding code handy.) -- Karl Hasselström, kha@xxxxxxxxxxx www.treskal.com/kalle - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html