summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/widgets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/widgets.py b/bitbake/lib/toaster/toastergui/widgets.py
index 5f6b47b663..08854024f5 100644
--- a/bitbake/lib/toaster/toastergui/widgets.py
+++ b/bitbake/lib/toaster/toastergui/widgets.py
@@ -252,8 +252,8 @@ class ToasterTable(TemplateView):
252 for key, val in kwargs.iteritems(): 252 for key, val in kwargs.iteritems():
253 cache_name = cache_name + str(key) + str(val) 253 cache_name = cache_name + str(key) + str(val)
254 254
255 # No special chars allowed in the cache name 255 # No special chars allowed in the cache name apart from dash
256 cache_name = re.sub(r'[^A-Za-z0-9]', "", cache_name) 256 cache_name = re.sub(r'[^A-Za-z0-9-]', "", cache_name)
257 data = cache.get(cache_name) 257 data = cache.get(cache_name)
258 258
259 if data: 259 if data: