Merged more upstream PEP8 updates
This commit is contained in:
commit
816ebd4d49
14 changed files with 786 additions and 761 deletions
|
|
@ -60,3 +60,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -40,3 +40,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -54,3 +54,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -55,3 +55,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
#!/bin/python3
|
||||
#
|
||||
## Wizard Kit: Functions - Network
|
||||
# Wizard Kit: Functions - Network
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
|
|
|||
|
|
@ -36,3 +36,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -36,3 +36,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Wizard Kit: Settings - Windows Builds
|
||||
|
||||
WINDOWS_BUILDS = {
|
||||
# Build Version Release Codename Marketing Name Notes
|
||||
# Build, Version, Release, Codename, Marketing Name, Notes
|
||||
'6000': ('Vista', 'RTM', 'Longhorn', None, 'unsupported'),
|
||||
'6000': ('Vista', 'RTM', 'Longhorn', None, 'unsupported'),
|
||||
'6001': ('Vista', 'SP1', 'Longhorn', None, 'unsupported'),
|
||||
|
|
@ -90,7 +90,7 @@ WINDOWS_BUILDS = {
|
|||
'15058': ('10', None, 'Redstone 2', None, 'preview build'),
|
||||
'15060': ('10', None, 'Redstone 2', None, 'preview build'),
|
||||
'15061': ('10', None, 'Redstone 2', None, 'preview build'),
|
||||
'15063': ( '10', 'v1703', 'Redstone 2', 'Creators Update', 'outdated'),
|
||||
'15063': ('10', 'v1703', 'Redstone 2', 'Creators Update', 'unsupported'),
|
||||
'16170': ('10', None, 'Redstone 3', None, 'preview build'),
|
||||
'16176': ('10', None, 'Redstone 3', None, 'preview build'),
|
||||
'16179': ('10', None, 'Redstone 3', None, 'preview build'),
|
||||
|
|
@ -137,7 +137,7 @@ WINDOWS_BUILDS = {
|
|||
'17127': ('10', None, 'Redstone 4', None, 'preview build'),
|
||||
'17128': ('10', None, 'Redstone 4', None, 'preview build'),
|
||||
'17133': ('10', None, 'Redstone 4', None, 'preview build'),
|
||||
'17134': ( '10', 'v1803', 'Redstone 4', 'April 2018 Update', None),
|
||||
'17134': ('10', 'v1803', 'Redstone 4', 'April 2018 Update', 'outdated'),
|
||||
'17604': ('10', None, 'Redstone 5', None, 'preview build'),
|
||||
'17618': ('10', None, 'Redstone 5', None, 'preview build'),
|
||||
'17623': ('10', None, 'Redstone 5', None, 'preview build'),
|
||||
|
|
@ -191,3 +191,5 @@ WINDOWS_BUILDS = {
|
|||
|
||||
if __name__ == '__main__':
|
||||
print("This file is not meant to be called directly.")
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -37,3 +37,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
|
||||
# Init
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
sys.path.append(os.getcwd())
|
||||
|
|
@ -16,6 +17,7 @@ os.system('title {}: System Diagnostics Tool'.format(KIT_NAME_FULL))
|
|||
set_log_file('System Diagnostics.log')
|
||||
D7_MODE = 'd7mode' in sys.argv
|
||||
|
||||
|
||||
# Static Variables
|
||||
BLEACH_BIT_CLEANERS = {
|
||||
'Applications': (
|
||||
|
|
@ -76,6 +78,7 @@ def check_result(result, other_results):
|
|||
result_ok = False
|
||||
return result_ok
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
stay_awake()
|
||||
|
|
@ -205,4 +208,4 @@ if __name__ == '__main__':
|
|||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=4 sw=4 ts=4
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -26,3 +26,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -149,3 +149,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -64,3 +64,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
|
|
@ -20,3 +20,5 @@ if __name__ == '__main__':
|
|||
pass
|
||||
except:
|
||||
major_exception()
|
||||
|
||||
# vim: sts=2 sw=2 ts=2
|
||||
|
|
|
|||
Loading…
Reference in a new issue