Skip to content

Commit

Permalink
fixing wiki config creation, refs #2
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/behr_mi/git/sumo_synched/trunk@15944 afbd958f-9f77-42d5-a016-97a22340ccf4
  • Loading branch information
behrisch committed Mar 16, 2014
1 parent 332942a commit f1b08a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sumo/tools/docs/configTemplateToWiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, mergeWikiTxt):
currSect = line
elif line[:2] == "{|":
self._intro[currSect] = (start, idx)
elif line[:4] == "----" or line[:2] == "=S":
elif line[:4] == "----" or (len(line) > 2 and line[0] == "=" and line[1] != "="):
self._end = idx
break
if currSect == "":
Expand Down

0 comments on commit f1b08a5

Please sign in to comment.