mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
8 lines
376 B
Python
8 lines
376 B
Python
--- dateutils/datediff.py.orig 2013-05-02 02:45:52 UTC
|
|
+++ dateutils/datediff.py
|
|
@@ -37,4 +37,4 @@ def main():
|
|
if args.holiday_file:
|
|
holidays.extend(parse(l) for l in open(args.holiday_file))
|
|
kwargs['holidays'] = holidays
|
|
- print __import__(args.unit)(end_dt, start_dt, **kwargs)
|
|
+ print(__import__(args.unit)(end_dt, start_dt, **kwargs))
|