Files
dkimpy-milter-smtputf8/dkimpy_milter/__main__.py
T
Daniel Kahn Gillmor 391b5352f3 Convert mostly to python3 (still need strings/bytes conversions)
This covers conversion of the whole project to python3, *except* for
the strings/bytes distinction in __init__.py, which i'm leaving for a
second commit.

The changes in this commit are intended to be relatively
uncontroversial, so that the following commit contains the tricky
bits.
2019-02-21 19:22:09 -05:00

7 lines
90 B
Python

#!/usr/bin/python3
from dkimpy_milter import main
if __name__ == "__main__":
main()