summarylogtreecommitdiffstats
path: root/allow-missing-vendor.patch
diff options
context:
space:
mode:
authorYen Chi Hsuan2017-10-25 23:31:18 +0800
committerYen Chi Hsuan2017-10-25 23:31:18 +0800
commitc6694b54cfbe6aa611933f2421f22b125e1b3d79 (patch)
tree649788d0c8b515dd1087a8580e63bf69fe79b716 /allow-missing-vendor.patch
parent84332eb60f5ba4e361f293b9039706006c61ebc9 (diff)
downloadaur-c6694b54cfbe6aa611933f2421f22b125e1b3d79.tar.gz
Fix check()
Diffstat (limited to 'allow-missing-vendor.patch')
-rw-r--r--allow-missing-vendor.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/allow-missing-vendor.patch b/allow-missing-vendor.patch
index 0f87a7cdbe42..80a853f3ef2d 100644
--- a/allow-missing-vendor.patch
+++ b/allow-missing-vendor.patch
@@ -3,10 +3,10 @@ index f04372a..acec90c 100644
--- a/jedihttp/utils.py
+++ b/jedihttp/utils.py
@@ -18,6 +18,9 @@ import sys
- def AddVendorFolderToSysPath():
+ def add_vendor_folder_to_sys_path():
vendor_folder = os.path.join(os.path.dirname(__file__), '..', 'vendor')
-+ if not os.path.exists( vendor_folder ):
++ if not os.path.exists(vendor_folder):
+ return
+
for folder in os.listdir(vendor_folder):