Skip to content

Commit

Permalink
Fixed|Snowberry: Typo in profile duplication
Browse files Browse the repository at this point in the history
Addons and load order were inadvertently added to the values array.
  • Loading branch information
skyjake committed Apr 27, 2013
1 parent 1ca86af commit 5116f92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snowberry/sb/profile.py
Expand Up @@ -81,9 +81,9 @@ def duplicate(self, newIdentifier):
for v in self.values:
p.values.append(v)
for a in self.addons:
p.values.append(a)
p.addons.append(a)
for o in self.loadOrder:
p.values.append(o)
p.loadOrder.append(o)
p.story = self.story
p.hidden = self.hidden
p.banner = self.banner
Expand Down

0 comments on commit 5116f92

Please sign in to comment.