Comment 2 for bug 149352

Revision history for this message
Jim Fulton (jim-zope) wrote : Re: [Bug 149352] setup sub-command without any argument error

On Oct 5, 2007, at 5:54 AM, Baiju Muthukadan wrote:

> Public bug reported:
>
> "buildout setup" command raise an error like this:
>
> An internal error occured due to a bug in either zc.buildout or in a
> recipe being used:
>
> IndexError:
> pop from empty list
>
> --------------------------
>
> This error message should be improved. Here is a patch (please change
> message, if required):
>
>
> Index: src/zc/buildout/buildout.py
> ===================================================================
> --- src/zc/buildout/buildout.py (revision 80625)
> +++ src/zc/buildout/buildout.py (working copy)
> @@ -725,6 +725,10 @@
> ep.load()(self)
>
> def setup(self, args):
> + if not args:
> + raise zc.buildout.UserError(
> + "setup command expects one argument.\n"

"one or more arguments".

Please feel free to go ahead and apply this. :)

Thanks.

Jim

--
Jim Fulton
Zope Corporation