in reply to Conflicting modules

You're missing the closing parenthesis here:

$block = $ct->block($ct->select(-command_re => "key=");

It should be:

$block = $ct->block($ct->select(-command_re => "key="));

Igor 'izut' Sutton
your code, your rules.

Replies are listed 'Best First'.
Re^2: Conflicting modules
by Anonymous Monk on Mar 14, 2006 at 13:14 UTC
    Hmm. Thanks. I should have spotted that one !