Skip to content

Commit

Permalink
Fix cache collisions issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CaTzil committed Dec 22, 2015
1 parent f07c18a commit 91c294b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/SUBUtilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def log(module, msg):


def get_cache_key(prefix="", str=""):
str = regexHelper.sub('_', str).lower()
str = re.sub(r'[\'\(\)\.\-\]\[ ]+', '_', str).lower()
return prefix + '_' + str


Expand Down

0 comments on commit 91c294b

Please sign in to comment.