Skip to content

Commit

Permalink
Update ptvsd to 4.1.1 (#4680)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig authored Aug 22, 2018
1 parent ad5b92e commit aae0ae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Python/Product/Debugger/Debugger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
</ItemGroup>
<Import Project="..\ProjectAfter.settings" />
<PropertyGroup>
<BundledPTVSDVersion>4.1.1a10</BundledPTVSDVersion>
<BundledPTVSDVersion>4.1.1</BundledPTVSDVersion>
</PropertyGroup>
<Target Name="_GatherPtvsd" BeforeTargets="_IncludePtvsd" Condition="!Exists('$(IntermediateOutputPath)Packages\ptvsd\__init__.py')">
<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Python/Tests/DebuggerUITests/DebugProjectUITests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public void SimpleException2(PythonVisualStudioApp app, bool useVsCodeDebugger,
var pyService = app.ServiceProvider.GetUIThread().Invoke(() => app.ServiceProvider.GetPythonToolsService());
using (SelectDefaultInterpreter(app, interpreter))
using (new PythonDebuggingGeneralOptionsSetter(app.Dte, useLegacyDebugger: !useVsCodeDebugger)) {
string exceptionDescription = useVsCodeDebugger ? "ValueError('bad value',)" : "ValueError: bad value";
string exceptionDescription = useVsCodeDebugger ? "bad value" : "ValueError: bad value";
ExceptionTest(app, "SimpleException2.py", "Exception Thrown", exceptionDescription, "ValueError", 3);
}
}
Expand Down

0 comments on commit aae0ae5

Please sign in to comment.