Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mis-escaped string literal #312

Merged
merged 1 commit into from Sep 12, 2023
Merged

Conversation

loskutov
Copy link
Contributor

@loskutov loskutov commented Sep 12, 2023

Fixes the following:

bundled/tool/lsp_server.py:264: DeprecationWarning: invalid escape sequence '\d'
  parts = [v for v in first_line.split(" ") if re.match("\d+\.\d+\S*", v)]

Fixes #313

Fixes the following:
```
bundled/tool/lsp_server.py:264: DeprecationWarning: invalid escape sequence '\d'
  parts = [v for v in first_line.split(" ") if re.match("\d+\.\d+\S*", v)]
```
@karthiknadig karthiknadig self-assigned this Sep 12, 2023
@karthiknadig karthiknadig added the bug Issue identified by VS Code Team member as probable bug label Sep 12, 2023
@karthiknadig karthiknadig enabled auto-merge (squash) September 12, 2023 17:17
@karthiknadig karthiknadig merged commit 5f91531 into microsoft:main Sep 12, 2023
19 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bundled/tool/lsp_server.py:264: DeprecationWarning: invalid escape sequence '\d'
3 participants