fix small typo preventing scheduler initialization

This typo lead to the following message when Synergy started:
> ERROR - unrecoverable error: 'KeystoneManager' object has no attribute 'project_domaini_name'

Change-Id: I49fe371b662291a16b2111e9eece134040c7d45f
Sem-Ver: bugfix
This commit is contained in:
Vincent Llorens 2017-08-22 16:43:33 +02:00
parent bbea237380
commit 631437a032
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class KeystoneManager(Manager):
if self.project_id:
data["auth"]["scope"] = {
"project": {"id": self.project_id,
"domain": {"name": self.project_domaini_name}}}
"domain": {"name": self.project_domain_name}}}
response = requests.post(url=self.auth_url + "/auth/tokens",
headers=headers,