summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--oslo_middleware/catch_errors.py2
-rw-r--r--oslo_middleware/stats.py6
3 files changed, 5 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index adf36be..ef39dd9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,7 @@
# Packages
*.egg
+*.eggs
*.egg-info
dist
build
diff --git a/oslo_middleware/catch_errors.py b/oslo_middleware/catch_errors.py
index 220d704..eab36df 100644
--- a/oslo_middleware/catch_errors.py
+++ b/oslo_middleware/catch_errors.py
@@ -24,7 +24,7 @@ from oslo_middleware import base
LOG = logging.getLogger(__name__)
-_TOKEN_RE = re.compile('^(X-\w+-Token):.*$', flags=re.MULTILINE)
+_TOKEN_RE = re.compile(r'^(X-\w+-Token):.*$', flags=re.MULTILINE)
class CatchErrors(base.ConfigurableMiddleware):
diff --git a/oslo_middleware/stats.py b/oslo_middleware/stats.py
index 9839fd5..11c4789 100644
--- a/oslo_middleware/stats.py
+++ b/oslo_middleware/stats.py
@@ -21,12 +21,12 @@ import webob.dec
from oslo_middleware import base
LOG = logging.getLogger(__name__)
-VERSION_REGEX = re.compile("/(v[0-9]{1}\.[0-9]{1})")
+VERSION_REGEX = re.compile(r"/(v[0-9]{1}\.[0-9]{1})")
UUID_REGEX = re.compile(
- '.*(\.[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}).*a',
+ r'.*(\.[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}).*a',
re.IGNORECASE)
# UUIDs without the - char, used in some places in Nova URLs.
-SHORT_UUID_REGEX = re.compile('.*(\.[0-9a-fA-F]{32}).*')
+SHORT_UUID_REGEX = re.compile(r'.*(\.[0-9a-fA-F]{32}).*')
class StatsMiddleware(base.ConfigurableMiddleware):