diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-16 07:38:14 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-16 16:08:45 +1000 |
commit | eeafe1eb65b92c4a1cfafbadd71c991c9c2be50e (patch) | |
tree | 3b2433f048f735fe107c058260a5dd2eab916a79 | |
parent | 32976e2eaacdd9dbbe773cc9aace7e3def40fb36 (diff) | |
download | samba-eeafe1eb65b92c4a1cfafbadd71c991c9c2be50e.tar.gz |
s4-pydrs: fix for python 2.4
thanks to Kamen and David Gonzalez for spotting this
-rw-r--r-- | source4/scripting/python/samba/drs_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/drs_utils.py b/source4/scripting/python/samba/drs_utils.py index 854608a1fd0..3476763045e 100644 --- a/source4/scripting/python/samba/drs_utils.py +++ b/source4/scripting/python/samba/drs_utils.py @@ -23,7 +23,7 @@ from samba.dcerpc import drsuapi, misc from samba.net import Net import samba, ldb -class drs_Replicate(): +class drs_Replicate: '''DRS replication calls''' def __init__(self, binding_string, lp, creds, samdb): |