Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-01-22 01:50:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-22 02:14:20 +0300
commitcae8c68ca68f620e98ae00f3297d75f2b78cde77 (patch)
treed9e2bcb4864a2ca6db0cac1344d43ae9a1e41dcd
parent79563d2a33efd6db5c2d6429f964d78cfb305447 (diff)
Fix manual lookups (data is now lowercase)
-rw-r--r--release/scripts/startup/bl_operators/wm.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 20586b727d5..66f202d8c9f 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -985,9 +985,12 @@ class WM_OT_doc_view_manual(Operator):
def _find_reference(rna_id, url_mapping, verbose=True):
if verbose:
print("online manual check for: '%s'... " % rna_id)
- from fnmatch import fnmatch
+ from fnmatch import fnmatchcase
+ # XXX, for some reason all RNA ID's are stored lowercase
+ # Adding case into all ID's isn't worth the hassle so force lowercase.
+ rna_id = rna_id.lower()
for pattern, url_suffix in url_mapping:
- if fnmatch(rna_id, pattern):
+ if fnmatchcase(rna_id, pattern):
if verbose:
print(" match found: '%s' --> '%s'" % (pattern, url_suffix))
return url_suffix