mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05: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)
|