diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-28 14:09:30 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-28 17:23:28 +0100 |
commit | eb5a8e29cf362ea382da7bb9dd8c9eb175b9ebe3 (patch) | |
tree | 783d797c3203634dae90a9b6f67409c766488e76 /source4/scripting/python/samba/ms_schema.py | |
parent | 20516df27574ad999073b7eb9620e70833e3170d (diff) | |
download | samba-eb5a8e29cf362ea382da7bb9dd8c9eb175b9ebe3.tar.gz samba-eb5a8e29cf362ea382da7bb9dd8c9eb175b9ebe3.tar.xz samba-eb5a8e29cf362ea382da7bb9dd8c9eb175b9ebe3.zip |
s4-python: Some reformatting for the purpose of pydoctor.
Diffstat (limited to 'source4/scripting/python/samba/ms_schema.py')
-rw-r--r-- | source4/scripting/python/samba/ms_schema.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/scripting/python/samba/ms_schema.py b/source4/scripting/python/samba/ms_schema.py index 2c773bd005d..64bb28a9676 100644 --- a/source4/scripting/python/samba/ms_schema.py +++ b/source4/scripting/python/samba/ms_schema.py @@ -1,10 +1,11 @@ -#!/usr/bin/env python # # create schema.ldif (as a string) from WSPP documentation # # based on minschema.py and minschema_wspp # +"""Generate LDIF from WSPP documentation.""" + import re import base64 import uuid @@ -276,5 +277,3 @@ if __name__ == '__main__': sys.exit(1) print read_ms_schema(attr_file, classes_file) - - |