18.08.2018, 20:37
Hi,
Try this:
BR,
Erwin
Try this:
Code:
date = grp.getvalue('date_object')
time = grp.getvalue('time_object')
cmd = string.format("date -s '%d-%d-%d %d:%d:%d'", date.year, date.month, date.day, time.hour, time.minute, time.second)
os.execute(cmd)
Erwin