Skip to content
Snippets Groups Projects
Commit 70fa47da authored by Stuart D. Gathman's avatar Stuart D. Gathman
Browse files

thread renamed to _thread in python3

parent b4931beb
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,11 @@ __version__ = '1.0.1'
import os
import re
import milter
try:
import thread
except:
# libmilter uses posix threads
import _thread as thread
from milter import *
from functools import wraps
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment