Skip to content

Commit

Permalink
Break long line, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shaded-enmity committed Oct 24, 2016
1 parent 2bbea69 commit 9bc3de2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
5 changes: 2 additions & 3 deletions docker-network-capture
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ def _main(container, bridge="docker0", capture=CaptureFlags.Egress, docker='', *
# print out container bridge, name and ID when we're verbose
if verbose:
name, cid = cont.get("Name", "/unnamed"), cont.get("Id", "(no-id)")
print('[+] Initializing packet capture on: "{b}" for container: "{c}@{h}"'.format(b=args.bridge,
c=name[1:], h=cid),
file=stderr)
msg = '[+] Initializing packet capture on: "{b}" for container: "{c}@{h}"'
print(msg.format(b=args.bridge, c=name[1:], h=cid), file=stderr)

# depending on the output, instantiate a consumer
if jsonout:
Expand Down

0 comments on commit 9bc3de2

Please sign in to comment.