Skip to content

Commit

Permalink
Fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy DeFreitas committed Dec 13, 2016
1 parent cd86675 commit 79b8313
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ dockerized version of the tool available on docker hub
====================
4. Release Notes
====================
v0.13.2 - Fix getting workspace attributes when not using the attributes flag.

v0.13.1 - More helpful error checking for loadfile format during entity_import.

v0.13.0 - Some fixes to match API changes in FireCloud Orchestration and
Expand Down
2 changes: 1 addition & 1 deletion firecloud/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Package version
__version__ = "0.13.1"
__version__ = "0.13.2"
2 changes: 1 addition & 1 deletion firecloud/fiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def attr_get(args):
workspace_attrs = r.json()['workspace']['attributes']

for k in sorted(workspace_attrs.keys()):
if k in args.attributes or len(args.attributes) == 0:
if not args.attributes or k in args.attributes:
print_(k + "\t" + workspace_attrs[k])


Expand Down

0 comments on commit 79b8313

Please sign in to comment.