Skip to content

Commit

Permalink
[Docker] tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noxiouz committed Oct 27, 2014
1 parent f246a0a commit 2c136c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cocaine/tools/actions/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def execute(self):

def _prepare_auth_header_value(self):
username = self.auth.get('username', 'username')
password = self.auth.get('password, password')
password = self.auth.get('password', 'password')
return base64.b64encode('{0}:{1}'.format(username, password))

def _on_body(self, data):
Expand Down

0 comments on commit 2c136c3

Please sign in to comment.