[RFC][PATCH] support for aliases in bazaar.conf
Matthew Hannigan
mlh at zip.com.au
Sun Feb 12 22:20:21 GMT 2006
On Sun, Feb 12, 2006 at 08:55:29PM +0100, Erik Bågfors wrote:
>
> > Instead of doing a double loop over alias_argv and then argv, why not do
> > a single loop with
> >
> > for arg in alias_argv + argv:
> >
> > It also makes your patch smaller, since it doesn't looked like you
> > changed all the lines that you just indented.
>
> Well, that was my first thought as well, but I need to know if I'm in
> "alias_argv" or in "argv" to get overrides to work.
>
> After I have gone trough alias_argv I set
> proc_aliasarg = False # Done with alias argv
>
> I don't know how to do that if I just concatenate them together.
for arg in alias_argv + "END_ALIAS_ARGV" + argv:
perhaps?
More information about the bazaar
mailing list