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
0182023d
Unverified
Commit
0182023d
authored
Oct 12, 2020
by
devttys0
Committed by
GitHub
Oct 12, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #476 from jstucke/fix-entropy-graph-legend
moved entropy legend
parents
96a3ff3b
1534001b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
entropy.py
src/binwalk/modules/entropy.py
+2
-2
No files found.
src/binwalk/modules/entropy.py
View file @
0182023d
...
@@ -308,11 +308,11 @@ class Entropy(Module):
...
@@ -308,11 +308,11 @@ class Entropy(Module):
ax
.
plot
([
offset
,
offset
],
[
0
,
1.1
],
'
%
s-'
%
color
,
lw
=
2
,
label
=
description
)
ax
.
plot
([
offset
,
offset
],
[
0
,
1.1
],
'
%
s-'
%
color
,
lw
=
2
,
label
=
description
)
ax
.
legend
(
loc
=
'
lower right'
,
shadow
=
True
)
ax
.
legend
(
loc
=
'
center left'
,
bbox_to_anchor
=
(
1
,
0.5
)
)
if
self
.
save_plot
:
if
self
.
save_plot
:
self
.
output_file
=
os
.
path
.
join
(
os
.
getcwd
(),
os
.
path
.
basename
(
fname
))
+
'.png'
self
.
output_file
=
os
.
path
.
join
(
os
.
getcwd
(),
os
.
path
.
basename
(
fname
))
+
'.png'
fig
.
savefig
(
self
.
output_file
)
fig
.
savefig
(
self
.
output_file
,
bbox_inches
=
'tight'
)
else
:
else
:
plt
.
show
()
plt
.
show
()
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