Skip to content

Commit

Permalink
Removed graph titling from entropy plots
Browse files Browse the repository at this point in the history
  • Loading branch information
devttys0 committed Oct 6, 2017
1 parent 9f6e550 commit 62c5470
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/binwalk/modules/entropy.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Entropy(Module):
DEFAULT_TRIGGER_HIGH = .95
DEFAULT_TRIGGER_LOW = .85

TITLE = "Entropy Analysis"
TITLE = ""
ORDER = 8

# TODO: Add --dpoints option to set the number of data points?
Expand Down Expand Up @@ -270,7 +270,7 @@ def plot_entropy(self, fname):
except AttributeError:
ax = fig.add_subplot(1, 1, 1, autoscale_on=True, axisbg='black')

ax.set_title(fname)
ax.set_title(self.TITLE)
ax.set_xlabel(self.XLABEL)
ax.set_ylabel(self.YLABEL)
ax.plot(x, y, 'y', lw=2)
Expand Down

0 comments on commit 62c5470

Please sign in to comment.