Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
a551c05c
Commit
a551c05c
authored
Oct 02, 2017
by
Maxime Perrotin
Browse files
Fix case issue with process type
parent
3b58e33e
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
a551c05c
...
...
@@ -141,6 +141,9 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
1.
5.41 (10/2017)
-
Fix case issue with process types
1.
5.40 (07/2017)
-
Fix range check in arrays
...
...
opengeode/ogParser.py
View file @
a551c05c
...
...
@@ -4502,7 +4502,7 @@ def pr_file(root):
if
each
.
instance_of_name
is
not
None
:
# Find corresponding process type definition
for
p_type
in
process_types
:
if
p_type
.
processName
==
each
.
instance_of_name
:
if
p_type
.
processName
.
lower
()
==
each
.
instance_of_name
.
lower
()
:
each
.
instance_of_ref
=
p_type
to_be_deleted
.
append
(
p_type
)
break
...
...
opengeode/opengeode.py
View file @
a551c05c
...
...
@@ -139,7 +139,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'1.5.4
0
'
__version__
=
'1.5.4
1
'
if
hasattr
(
sys
,
'frozen'
):
# Detect if we are running on Windows (py2exe-generated)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment