samba.common: Fix formatting of docstring (trips up pydoctor).
authorJelmer Vernooij <jelmer@samba.org>
Wed, 2 Nov 2011 15:22:16 +0000 (16:22 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 2 Nov 2011 17:35:37 +0000 (18:35 +0100)
source4/scripting/python/samba/common.py

index 9738966e4518ba5e0d25ed6dc340efa63a07de1f..b67036cb1d5242aeef3b8dc421177132effa5a7c 100644 (file)
 
 import ldb, dsdb
 
-def confirm(msg, forced = False, allow_all=False):
+def confirm(msg, forced=False, allow_all=False):
     """confirm an action with the user
-        :param msg: A string to print to the user
-        :param forced: Are the answer forced
+
+    :param msg: A string to print to the user
+    :param forced: Are the answer forced
     """
     if forced:
         print("%s [YES]" % msg)