Skip to content

Commit

Permalink
Bug 840661 - Fix ExpandArgsMore._getFoldedSections. r=ted
Browse files Browse the repository at this point in the history
  • Loading branch information
glandium committed Feb 14, 2013
1 parent 0593722 commit 8218e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/expandlibs_exec.py
Expand Up @@ -129,7 +129,7 @@ def _getFoldedSections(self):
for l in stderr.split('\n'):
quoted = l.split("'")
if len(quoted) > 5 and quoted[1] != quoted[5]:
result[quoted[1]] = quoted[5]
result[quoted[1]] = [quoted[5]]
if quoted[5] in result:
result[quoted[5]].append(quoted[1])
else:
Expand Down
2 changes: 1 addition & 1 deletion js/src/config/expandlibs_exec.py
Expand Up @@ -129,7 +129,7 @@ def _getFoldedSections(self):
for l in stderr.split('\n'):
quoted = l.split("'")
if len(quoted) > 5 and quoted[1] != quoted[5]:
result[quoted[1]] = quoted[5]
result[quoted[1]] = [quoted[5]]
if quoted[5] in result:
result[quoted[5]].append(quoted[1])
else:
Expand Down

0 comments on commit 8218e2b

Please sign in to comment.