From 474136551f2d9fd00a97fc7a1484f40f3381fd2a Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Mon, 24 Feb 2020 00:31:30 +0100 Subject: [PATCH] changed script to include html files as well --- variable_grabbler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable_grabbler.py b/variable_grabbler.py index c1ba40f..9ccb81e 100644 --- a/variable_grabbler.py +++ b/variable_grabbler.py @@ -8,7 +8,7 @@ Variable Grabbler - version 1.9 import os, json, fnmatch dir = os.path.dirname(os.path.abspath(__file__)) -file_name_pattern = "*.php" +file_name_pattern = "*.{php,html}" print "Reading config file...", config = open("variable_grabbler.cfg","r")