##// END OF EJS Templates
py3: use absolute_import in killdaemons.py
Robert Stanca -
r28942:05cb9c6f default
parent child Browse files
Show More
@@ -1,6 +1,11 b''
1 1 #!/usr/bin/env python
2 2
3 import os, sys, time, errno, signal
3 from __future__ import absolute_import
4 import errno
5 import os
6 import signal
7 import sys
8 import time
4 9
5 10 if os.name =='nt':
6 11 import ctypes
@@ -41,7 +41,6 b''
41 41 i18n/polib.py not using absolute_import
42 42 setup.py not using absolute_import
43 43 tests/heredoctest.py requires print_function
44 tests/killdaemons.py not using absolute_import
45 44 tests/md5sum.py not using absolute_import
46 45 tests/mockblackbox.py not using absolute_import
47 46 tests/printenv.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now