|
|
@ -13,15 +13,9 @@ import threading |
|
|
|
import daemon |
|
|
|
import daemon |
|
|
|
# workaround for python-daemon >= 1.6 |
|
|
|
# workaround for python-daemon >= 1.6 |
|
|
|
try: |
|
|
|
try: |
|
|
|
<<<<<<< HEAD |
|
|
|
|
|
|
|
import daemon.pidlockfile as pidfile |
|
|
|
|
|
|
|
except ImportError: |
|
|
|
|
|
|
|
import daemon.pidfile as pidfile |
|
|
|
|
|
|
|
======= |
|
|
|
|
|
|
|
import daemon.pidlockfile as pidfile |
|
|
|
import daemon.pidlockfile as pidfile |
|
|
|
except ImportError: |
|
|
|
except ImportError: |
|
|
|
import daemon.pidfile as pidfile |
|
|
|
import daemon.pidfile as pidfile |
|
|
|
>>>>>>> 923b94f... Convert tabs to spaces |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Thread(threading.Thread): |
|
|
|
class Thread(threading.Thread): |
|
|
|
|
|
|
|
|
|
|
|