Merge pull request #499 from brendangilmore/master

Fix Tenant typo in error message
This commit is contained in:
Dan Christian Bogos
2016-08-08 20:59:47 -05:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ information, please see the [`CONTRIBUTING.md`](CONTRIBUTING.md) file.
| @razvancrainea | Răzvan Crainea |
| @marcinkowalczyk | Marcin Kowalczyk |
| @andmar | André Maricato |
| @brendangilmore | Brendan Gilmore |
<!-- to sign, include a single line above this comment containing the following text:
| @username | First Last |
-->

View File

@@ -28,7 +28,7 @@ import (
func (self *ApierV2) GetAccounts(attr utils.AttrGetAccounts, reply *[]*engine.Account) error {
if len(attr.Tenant) == 0 {
return utils.NewErrMandatoryIeMissing("Tenanat")
return utils.NewErrMandatoryIeMissing("Tenant")
}
var accountKeys []string
var err error