13 lines
127 B
Python
Executable File
13 lines
127 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
try:
|
|
import dns
|
|
has = 1
|
|
except:
|
|
has = 0
|
|
|
|
if has == 1:
|
|
sys.exit(0)
|
|
else:
|
|
sys.exit(1)
|