iamdork / compose

Command line replacement for docker-compose, adding dork magics.
MIT License
2 stars 2 forks source link

Fix auth files not concatenated correctly. #52

Open sepal opened 7 years ago

sepal commented 7 years ago

Currently there is a bug when collecting several .auth files and writing them to the specific password file. proxy.collect_auth_files() returns a list per service containing the content of the .auth and .auth.service files and later writes that list in the initializing() function directly to the password files. Python simply concatenates the list to a single string without any characters, but it should actually concatenated with a line break.