Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
fe745980
Commit
fe745980
authored
Nov 02, 2016
by
Maxime Perrotin
Browse files
Fix minor indentation issue
parent
82af1903
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
fe745980
...
...
@@ -142,6 +142,8 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
1.
5.16 (11/2016)
-
Fix minor indentation issue when saving
1.
5.15 (10/2016)
-
Report incomplete startup transitions as errors in nested states
...
...
opengeode/Pr.py
View file @
fe745980
...
...
@@ -240,7 +240,6 @@ def _decision(symbol, recursive=True, **kwargs):
def
_decisionanswer
(
symbol
,
recursive
=
True
,
**
kwargs
):
''' Decision Answer symbol or branch if recursive is set '''
result
=
Indent
()
Indent
.
indent
+=
1
result
.
append
(
cif_coord
(
'ANSWER'
,
symbol
))
ans
=
unicode
(
symbol
)
if
ans
.
lower
().
strip
()
!=
u
'else'
:
...
...
@@ -250,7 +249,6 @@ def _decisionanswer(symbol, recursive=True, **kwargs):
result
.
append
(
u
'{}:'
.
format
(
ans
))
if
recursive
:
result
.
extend
(
recursive_aligned
(
symbol
))
Indent
.
indent
-=
1
return
result
...
...
opengeode/opengeode.py
View file @
fe745980
...
...
@@ -138,7 +138,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'1.5.1
5
'
__version__
=
'1.5.1
6
'
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
.
Attach a 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