On Wed, May 15, 2002 at 09:59:59AM -0400, Brett Sanger wrote: > [% USE New_Dir = Directory(Subdir.path _ Subdir.name ) %]
With the current parser, you can't put expressions inside ( ) as
arguments. You have to use a temporary variable, like so:
[% path = Subdir.path _ Subdir.name;
USE New_Dir = Directory(path)
%]
This limitation will be removed in TT3 or perhaps sooner.
HTH
A
