Skip to content

Commit 6645bce

Browse files
committed
wip
1 parent 505378f commit 6645bce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buildbot_netauth/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from pathlib import Path
22

33
import netauth
4-
from buildbot.www.auth import CustomAuth, UserInfoProviderBase
4+
from buildbot.plugins import util
55
from twisted.internet import defer
66

77
__version__ = "0.0.1"
88

99

10-
class NetAuthAuth(CustomAuth):
10+
class NetAuthAuth(util.CustomAuth):
1111
"""
1212
NetAuth authentication provider
1313
@@ -36,7 +36,7 @@ def check_credentials(self, username: str, password: str) -> bool:
3636
return False
3737

3838

39-
class NetAuthUserInfo(UserInfoProviderBase):
39+
class NetAuthUserInfo(util.UserInfoProviderBase):
4040
"""
4141
NetAuth user info provider
4242

0 commit comments

Comments
 (0)