Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
binwalk
Commits
526a9796
Commit
526a9796
authored
7 years ago
by
Craig Heffner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added code to handle matplotlib axisbg vs facecolor
parent
aac6ef53
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
entropy.py
src/binwalk/modules/entropy.py
+8
-0
No files found.
src/binwalk/modules/entropy.py
View file @
526a9796
...
...
@@ -261,7 +261,15 @@ class Entropy(Module):
y
.
append
(
r
.
entropy
)
fig
=
plt
.
figure
()
# axisbg is depreciated, but older versions of matplotlib don't support facecolor.
# This tries facecolor first, thus preventing the annoying depreciation warnings,
# and falls back to axisbg if that fails.
try
:
ax
=
fig
.
add_subplot
(
1
,
1
,
1
,
autoscale_on
=
True
,
facecolor
=
'black'
)
except
AttributeError
:
ax
=
fig
.
add_subplot
(
1
,
1
,
1
,
autoscale_on
=
True
,
axisbg
=
'black'
)
ax
.
set_title
(
fname
)
ax
.
set_xlabel
(
self
.
XLABEL
)
ax
.
set_ylabel
(
self
.
YLABEL
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment