Skip to content

Commit

Permalink
Fix set_iml_profile bug (#87)
Browse files Browse the repository at this point in the history
Fixes #86.

Signed-off-by: Joe Grund <[email protected]>
  • Loading branch information
jgrund authored Apr 23, 2019
1 parent ecb063d commit 07e24fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chroma_agent/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def set_iml_profile(name, repos, packages):
if name:
f.write("IML_PROFILE_NAME={}\n".format(name))
if repos:
f.write("IML_PROFILE_REPOS={}\n".format(repos.join(",")))
f.write("IML_PROFILE_REPOS={}\n".format(",".join(repos)))
if packages:
f.write("IML_PROFILE_PACKAGES={}\n".format(packages.join(",")))
f.write("IML_PROFILE_PACKAGES={}\n".format(",".join(packages)))


def remove_iml_profile():
Expand Down

0 comments on commit 07e24fc

Please sign in to comment.