Skip to content

Commit

Permalink
Merge pull request #111 from diggyk/master
Browse files Browse the repository at this point in the history
Fix CLI debug flag
  • Loading branch information
jathanism committed Dec 10, 2015
2 parents 44de7a6 + 3711307 commit 70f204d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/hermes
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ def main():
if args.hermes_server:
settings.hermes_server = args.hermes_server

if args.verbose:
if args.debug:
logging.basicConfig(level=logging.DEBUG, format=settings.log_format)
elif args.quiet:
logging.basicConfig(level=logging.ERROR, format=settings.log_format)
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.3"
__version__ = "0.7.4"
2 changes: 1 addition & 1 deletion hermes/webapp/src/templates/questStatus.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
</div>
</div>
<div class="col-md-1">
<a ng-href="/v1/labors/{{host['laborId']}}?byQuery=owner={{qc.hostOwners[host['hostname']] | encode}}">
<a ng-href="/v1/labors/{{host['laborId']}}">
<span style="padding: 0" class="glyphicon glyphicon-new-window btn-glyph"></span>
</a>
</div>
Expand Down

0 comments on commit 70f204d

Please sign in to comment.