On Sat, Jan 12, 2013 at 3:43 PM, <[email protected]> wrote: > def fnc1(pp): > print "fnc1-",pp > > fnc1()
Like the message says, the function has been defined to take one
argument, and you're giving it none. Try giving it an argument:
fnc1("five-minute")
ChrisA
--
http://mail.python.org/mailman/listinfo/python-list
