From ceddf2385d2705ef4cfd5d609fdff4a9db34002a Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Thu, 4 Oct 2018 20:34:58 +0000 Subject: [PATCH] The Python 3 part of the script was missed when adding OpenBSD support. llvm-svn: 343810 --- lldb/scripts/utilsOsType.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lldb/scripts/utilsOsType.py b/lldb/scripts/utilsOsType.py index 5595541..dfc5cec 100644 --- a/lldb/scripts/utilsOsType.py +++ b/lldb/scripts/utilsOsType.py @@ -35,8 +35,9 @@ if sys.version_info.major >= 3: FreeBSD = 2 Linux = 3 NetBSD = 4 - Windows = 5 - kFreeBSD = 6 + OpenBSD = 5 + Windows = 6 + kFreeBSD = 7 else: class EnumOsType(object): values = ["Unknown", -- 2.7.4