Skip to content

Commit cccb3a4

Browse files
committed
Setting normalise variable to false unless passed as an argument.
1 parent 2d3e1ea commit cccb3a4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/HistSet.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def plot( self, plot_options = {} ):
6161

6262
if plot_options.has_key( 'normalise' ):
6363
normalise = plot_options['normalise']
64-
64+
else:
65+
normalise = False
66+
6567
if plot_type == 'shape_comparison':
6668
make_shape_comparison_plot( shapes = self.histograms,
6769
names = self.labels,

0 commit comments

Comments
 (0)