Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mouuff committed Jul 12, 2019
1 parent cbee90c commit a68ed2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file removed examples/solution.zip
Binary file not shown.
4 changes: 3 additions & 1 deletion iquail/installer/installer_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ def console(self):
@property
def uid(self):
"""Get application unique id"""
return self.name + "-" + self.publisher
uid = self.name + "-" + self.publisher
uid = uid.replace(" ", "-")
return uid

def build_root_path(self):
return os.path.join(str(pathlib.Path.home()), Constants.IQUAIL_ROOT_NAME)
Expand Down

0 comments on commit a68ed2d

Please sign in to comment.