"""Display the creation time for a list. Save as bin/created.py Run via bin/withlist -r created or bin/withlist -a -r created to do all lists. """ import time def created(mlist): print '%s: created at %s' % (mlist.real_name, time.ctime(mlist.created_at))