Fixed REGEX sections in settings files
This commit is contained in:
parent
197a5a9160
commit
68a3b6d0c7
4 changed files with 7 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
# Wizard Kit: Settings - Browsers
|
# Wizard Kit: Settings - Browsers
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
# General
|
# General
|
||||||
DEFAULT_HOMEPAGE = 'https://www.google.com/'
|
DEFAULT_HOMEPAGE = 'https://www.google.com/'
|
||||||
IE_GALLERY = 'https://www.microsoft.com/en-us/iegallery'
|
IE_GALLERY = 'https://www.microsoft.com/en-us/iegallery'
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# Wizard Kit: Settings - Data
|
# Wizard Kit: Settings - Data
|
||||||
|
|
||||||
import ctypes
|
import ctypes
|
||||||
|
import re
|
||||||
|
|
||||||
# FastCopy
|
# FastCopy
|
||||||
FAST_COPY_EXCLUDES = [
|
FAST_COPY_EXCLUDES = [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# Wizard Kit: Settings - Information
|
# Wizard Kit: Settings - Information
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
# General
|
# General
|
||||||
REG_PROFILE_LIST = r'SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
|
REG_PROFILE_LIST = r'SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
|
||||||
REG_SHELL_FOLDERS = r'Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders'
|
REG_SHELL_FOLDERS = r'Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders'
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# Wizard Kit: Settings - Sensors
|
# Wizard Kit: Settings - Sensors
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
# General
|
# General
|
||||||
TEMP_LIMITS = {
|
TEMP_LIMITS = {
|
||||||
'GREEN': 60,
|
'GREEN': 60,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue