Skip to content

Commit

Permalink
Merge pull request #112 from diggyk/master
Browse files Browse the repository at this point in the history
Bug fix for showing tags with labors
  • Loading branch information
mcot2 committed Dec 10, 2015
2 parents 70f204d + 3b84a29 commit 6e6d922
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bin/hermes
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def print_labor(labor, fates, verbose=False, tags=None):

if tags:
print "\tTags: {}\n".format(textwrap.fill(
", ".join(tags), width=30, subsequent_indent="\t "
", ".join(tags), width=50, subsequent_indent="\t "
))

if verbose:
Expand Down Expand Up @@ -526,6 +526,7 @@ def list_host_labors(args):
response = request_get("/api/v1/fates?limit=all&expand=eventtypes")
fates = response.json()["fates"]

tags = None
if args.tags:
json = {
"hostnames": [args.hostname],
Expand Down
2 changes: 1 addition & 1 deletion hermes/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.4"
__version__ = "0.7.5"

0 comments on commit 6e6d922

Please sign in to comment.