7 lines
92 B
Python
7 lines
92 B
Python
|
import time
|
||
|
|
||
|
|
||
|
def run(conf):
|
||
|
fmt = conf['date']['format']
|
||
|
return time.strftime(fmt)
|