From: W. Trevor King Date: Thu, 29 Jul 2010 16:37:31 +0000 (-0400) Subject: hooke.plugin.playlist.AddGlobCommand's 'input' argument type 'glob' -> 'string' X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=02969f32f1e6ccba7a9076566e992535394f8e5e;p=hooke.git hooke.plugin.playlist.AddGlobCommand's 'input' argument type 'glob' -> 'string' --- diff --git a/hooke/plugin/playlist.py b/hooke/plugin/playlist.py index 79e4f38..bcfb756 100644 --- a/hooke/plugin/playlist.py +++ b/hooke/plugin/playlist.py @@ -228,7 +228,7 @@ class AddGlobCommand (Command): name='glob curves to playlist', arguments=[ PlaylistArgument, - Argument(name='input', type='glob', optional=False, + Argument(name='input', type='string', optional=False, help=""" File name glob for the input :class:`hooke.curve.Curve`. """.strip()),