Skip to content

Commit

Permalink
Merge pull request #4 from jmmut/develop
Browse files Browse the repository at this point in the history
fixed bug: escaping quotes on project description
  • Loading branch information
cyenyxe committed Mar 17, 2016
2 parents 482bbf7 + 89fa57b commit eb95c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project_initialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run(self):
'password' : config['catalog_pass'],
'name' : self.name,
'organization' : self.organization,
'description' : self.description,
'description' : self.description.replace("\"", "\\\""),
'alias' : self.alias}
shellout_no_stdout(command, **kwargs)

Expand Down Expand Up @@ -100,7 +100,7 @@ def run(self):
'user' : config['catalog_user'],
'password' : config['catalog_pass'],
'name' : self.name,
'description' : self.description,
'description' : self.description.replace("\"", "\\\""),
'alias' : self.alias,
'project-alias' : self.project_alias}

Expand Down

0 comments on commit eb95c43

Please sign in to comment.