diff --git a/Playout/management/commands/_funcs.py b/Playout/management/commands/_funcs.py index df04272..7dab287 100644 --- a/Playout/management/commands/_funcs.py +++ b/Playout/management/commands/_funcs.py @@ -2,17 +2,15 @@ import platform def checkOs(): - osInfoObject = { + return { 'osType': os.name, 'systemType': platform.system(), 'systemRelease': platform.release() } - return osInfoObject def definePathDelimiter(): osInfoObject = checkOs() if(osInfoObject['systemType'] == 'Windows'): return '\\' else: - return '/' - pass \ No newline at end of file + return '/' \ No newline at end of file