Skip to content

Commit 9ea3c80

Browse files
committed
[ZeveraCom] Log error on login failure explaining how to use API token
1 parent af37c78 commit 9ea3c80

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

module/plugins/accounts/ZeveraCom.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class ZeveraCom(MultiAccount):
1111
__name__ = "ZeveraCom"
1212
__type__ = "account"
13-
__version__ = "0.37"
13+
__version__ = "0.38"
1414
__status__ = "testing"
1515

1616
__config__ = [("mh_mode", "all;listed;unlisted", "Filter hosters to use", "all"),
@@ -55,4 +55,5 @@ def grab_info(self, user, password, data):
5555
def signin(self, user, password, data):
5656
res = self.api_response("account/info", password)
5757
if res['status'] != "success":
58+
self.log_error( _("Password for Zevera should be the API token - get it from: https://www.zevera.com/account"))
5859
self.fail_login()

0 commit comments

Comments
 (0)