mirror of
https://github.com/opnsense/src.git
synced 2026-03-22 18:53:08 -04:00
7 lines
122 B
Python
7 lines
122 B
Python
|
|
from __future__ import print_function
|
||
|
|
|
||
|
|
def date():
|
||
|
|
import datetime
|
||
|
|
today = datetime.date.today()
|
||
|
|
print(today)
|