Skip to content

Commit

Permalink
Bugfix: plotter.plotField nimmt das name-Argument nun als Name fuer B…
Browse files Browse the repository at this point in the history
…ilder und Videos.
  • Loading branch information
hollatz committed Mar 25, 2015
1 parent 5a6f0cf commit f425ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postpic/plotting/plotter_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def plotField(self, field, autoreduce=True, maxlen=6000, name=None,
elif field.dimensions == 1:
ret = self.plotFields1d(field, **kwargs)
elif field.dimensions == 2:
ret = self.plotField2d(field, **kwargs)
ret = self.plotField2d(field, name, **kwargs)
else:
raise Exception('3D not implemented')
return ret
Expand Down

0 comments on commit f425ec0

Please sign in to comment.