This is a good idea, I think. On 2008-02-17 22:03:55 +0100, Onno Kortmann wrote: > instead of stg rename <old> <new>. This is for example helpful for > those people who always have a typo or two in their patch names. Please follow the commit message conventions. That is, first one short summary line, then a blank line and the rest of the commit message. And a sign-off. (Read git's Documentation/SubmittingPatches if you want the details.) > + args=[crt]+args > + out.start('Renaming top-most patch "%s" to "%s"' % (args[0], > args[1])) Please consider storing the patch names in two suitably named variables, like this: if len(args) == 1: old, [new] = crt, args elif len(args) == 2: old, new = args -- 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