From 600b8bcdd5cd5b3002578f9b570639346d9c9bbe Mon Sep 17 00:00:00 2001 From: Luis Moreno Date: Thu, 25 Jun 2020 14:25:54 -0400 Subject: [PATCH] Fix invalid escape sequence deprecation warning. --- openedx/core/process_warnings.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/openedx/core/process_warnings.py b/openedx/core/process_warnings.py index e0b0fd37f8..955510eb08 100644 --- a/openedx/core/process_warnings.py +++ b/openedx/core/process_warnings.py @@ -36,11 +36,11 @@ def seperate_warnings_by_location(warnings_data): # first create regex for each n file location warnings_locations = { - ".*/python\d\.\d/site-packages/.*\.py": "python", # noqa pylint: disable=W1401 - ".*/edx-platform/lms/.*\.py": "lms", # noqa pylint: disable=W1401 - ".*/edx-platform/openedx/.*\.py": "openedx", # noqa pylint: disable=W1401 - ".*/edx-platform/cms/.*\.py": "cms", # noqa pylint: disable=W1401 - ".*/edx-platform/common/.*\.py": "common", # noqa pylint: disable=W1401 + r".*/python\d\.\d/site-packages/.*\.py": "python", # noqa pylint: disable=W1401 + r".*/edx-platform/lms/.*\.py": "lms", # noqa pylint: disable=W1401 + r".*/edx-platform/openedx/.*\.py": "openedx", # noqa pylint: disable=W1401 + r".*/edx-platform/cms/.*\.py": "cms", # noqa pylint: disable=W1401 + r".*/edx-platform/common/.*\.py": "common", # noqa pylint: disable=W1401 } # separate into locations flow: @@ -93,7 +93,7 @@ def read_warning_data(dir_path): # TODO(jinder): currently this is hard-coded in, maybe create a constants file with info # THINK(jinder): but creating file for one constant seems overkill warnings_file_name_regex = ( - "pytest_warnings_?\d*\.json" # noqa pylint: disable=W1401 + r"pytest_warnings_?\d*\.json" # noqa pylint: disable=W1401 ) # iterate through files_in_dir and see if they match our know file name pattern