Skip to content

Commit

Permalink
Merge pull request #201 from elg/master
Browse files Browse the repository at this point in the history
Correction issue #185
  • Loading branch information
elg committed Oct 23, 2017
2 parents 9e5197d + 52a52b8 commit b0064fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions passhport_admin/manager/targetgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def prompt_create():
name = input("Name: ")
comment = input("Comment: ")

return {"<name>": name, "<comment>": comment}
return {"<name>": name, "--comment": comment}


def create(param):
Expand All @@ -21,7 +21,7 @@ def create(param):

if "--comment" in param:
comment = param["--comment"]

return {"name": param["<name>"],
"comment": comment}

Expand Down

0 comments on commit b0064fc

Please sign in to comment.