Description: Add sys.path informations to wfuzz.py. 
 Add sys.path.append to the main script to make it look
 under /usr/share/wfuzz/ for the rest of the modules it
 needs.
--- a/wfuzz/wfuzz.py	2017-10-07 10:33:12.225359064 +0200
+++ b/wfuzz/wfuzz.py	2017-10-07 10:33:12.225359064 +0200
@@ -3,6 +3,7 @@
 #Covered by GPL V2.0
 
 import sys
+sys.path.insert(0, "/usr/share/wfuzz/")
 
 from .core import Fuzzer
 from .facade import Facade
