diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-01-06 14:39:40 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-01-06 15:21:21 +0100 |
commit | b44fe4e3bbf89943041f4d70d75151e582c46600 (patch) | |
tree | 5dfc167bb7ffa29c54e2ef261a94bb916487d4af /source4 | |
parent | 4236ec9d6d128467b7f9e5306ed94b2bd025f9ad (diff) | |
download | samba-b44fe4e3bbf89943041f4d70d75151e582c46600.tar.gz samba-b44fe4e3bbf89943041f4d70d75151e582c46600.tar.bz2 samba-b44fe4e3bbf89943041f4d70d75151e582c46600.zip |
Use new style objects.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/join.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index 09adf7393b..6e4cb583c9 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -36,7 +36,8 @@ import talloc # this makes debugging easier talloc.enable_null_tracking() -class dc_join: + +class dc_join(object): '''perform a DC join''' def __init__(ctx, server=None, creds=None, lp=None, site=None, |