From: W. Trevor King Date: Tue, 17 Apr 2012 16:29:34 +0000 (-0400) Subject: 'channels' default should be a list in pycomedi_demo_args.py. X-Git-Tag: 0.5~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a834d59795bd79a20241e3678d959f492b60d6e6;p=pycomedi.git 'channels' default should be a list in pycomedi_demo_args.py. --- diff --git a/doc/demo/pycomedi_demo_args.py b/doc/demo/pycomedi_demo_args.py index 4c797ad..620cf7d 100644 --- a/doc/demo/pycomedi_demo_args.py +++ b/doc/demo/pycomedi_demo_args.py @@ -39,7 +39,7 @@ ARGUMENTS = { 'channels':( ['-c', '--channels'], {'type':lambda x: [int(i) for i in x.split(',')], - 'default':0, + 'default':[0], 'help':'comma-separated channels for analog input/output'}), 'aref':( ['-a', '--analog-reference'],