X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=fuel%2Fbuild%2Ffuel-main_4.patch;fp=fuel%2Fbuild%2Ffuel-main_4.patch;h=0000000000000000000000000000000000000000;hb=48914ddcaaf2d4aa1b62f9799a220065e2578b11;hp=ba8a088900f9c65d786bd162e0a87117383b6ee5;hpb=5383bd288bd6915fe706fee3bc09cce2ee015b23;p=genesis.git diff --git a/fuel/build/fuel-main_4.patch b/fuel/build/fuel-main_4.patch deleted file mode 100644 index ba8a088..0000000 --- a/fuel/build/fuel-main_4.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- simple_http_daemon.py.orig 2015-08-12 18:28:10.432593984 +0200 -+++ simple_http_daemon.py 2015-08-12 18:36:05.291038788 +0200 -@@ -18,7 +18,10 @@ - import os - import time - import daemon --import daemon.pidlockfile -+try: -+ from daemon.pidlockfile import PIDLockFile -+except ImportError: -+ from lockfile.pidlockfile import PIDLockFile - import BaseHTTPServer - from SimpleHTTPServer import SimpleHTTPRequestHandler - -@@ -47,7 +50,7 @@ - context = daemon.DaemonContext( - working_directory=os.getcwd(), - umask=0o002, -- pidfile=daemon.pidlockfile.PIDLockFile(self.pid_file) -+ pidfile=PIDLockFile(self.pid_file) - ) - with context: - self.run_http_server()