Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Steinlechner
pykat
Commits
2787dbfa
Commit
2787dbfa
authored
Dec 17, 2013
by
Daniel Brown
Browse files
fixed misplaced format
parent
8fdb337c
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/finesse.py
View file @
2787dbfa
...
...
@@ -225,7 +225,7 @@ class kat(object):
warnings
.
warn
(
"found block {0} before block {1} ended"
.
format
(
newTag
,
self
.
__currentTag
))
if
newTag
in
self
.
__blocks
:
raise
pkex
.
BasePyKatException
(
"Block `{0}` has already been read"
)
.
format
(
newTag
)
raise
pkex
.
BasePyKatException
(
"Block `{0}` has already been read"
.
format
(
newTag
)
)
self
.
__blocks
[
newTag
]
=
Block
(
newTag
)
# create new list to store all references to components in block
self
.
__currentTag
=
newTag
...
...
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