From 3567097e09947849fbc6797faeece06aa79a4ea8 Mon Sep 17 00:00:00 2001
From: Samuel Roberts <sam.roberts@geant.org>
Date: Wed, 29 Jun 2022 16:16:42 +0100
Subject: [PATCH] fix a problem with escaping

---
 inventory_provider/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inventory_provider/config.py b/inventory_provider/config.py
index 492056f3..785c4def 100644
--- a/inventory_provider/config.py
+++ b/inventory_provider/config.py
@@ -186,7 +186,7 @@ CONFIG_SCHEMA = {
         'nren-asn-map': {
             'type': 'object',
             'patternProperties': {
-                '^\d+$': {'type': 'string'}
+                r'^\d+$': {'type': 'string'}
             }
         }
     },
-- 
GitLab