Skip to content

Commit

Permalink
SaveBundle did not copy mashups
Browse files Browse the repository at this point in the history
This caused missing mashups when loaded from locator cache.

db/services/io.py:
  - SaveBundle.__copy__: Copy mashups as well
  • Loading branch information
Tommy Ellqvist committed Apr 29, 2014
1 parent 799a95d commit ea12b6a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vistrails/db/services/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ def do_copy(self):

for t in self.thumbnails:
cp.thumbnails.append(t)

for m in self.mashups:
cp.mashups.append(m)

return cp

Expand Down

0 comments on commit ea12b6a

Please sign in to comment.