"""Inserts the current time (in seconds) into the wiki page.""" import time def execute(hdf, txt, env): t = time.localtime() return "%s" % time.strftime('%c', t)