diff --git a/DICUI/Utilities/DumpEnvironment.cs b/DICUI/Utilities/DumpEnvironment.cs index 86424a60..15f1edec 100644 --- a/DICUI/Utilities/DumpEnvironment.cs +++ b/DICUI/Utilities/DumpEnvironment.cs @@ -1172,7 +1172,7 @@ namespace DICUI.Utilities } // Once it finds the "VER" line, extract the version - return Regex.Match(line, @"VER = (.*)").Groups[1].Value; + return Regex.Match(line, @"VER\s*=\s*(.*)").Groups[1].Value; } } catch