python: Remove extra newlines.
[rusty/samba.git] / source4 / scripting / python / samba / netcmd / common.py
index a4ebdd4329aaeb1f5c3c9807f46c6d3cc529d5be..234fad3c03251a80ee908c1ed6373b0c5f9fac99 100644 (file)
@@ -24,7 +24,6 @@ from samba.dcerpc import nbt
 from samba.net import Net
 
 
-
 def _get_user_realm_domain(user):
     """ get the realm or the domain and the base user
         from user like:
@@ -47,14 +46,12 @@ def _get_user_realm_domain(user):
     return (baseuser.lower(), domain, realm.upper())
 
 
-
 def netcmd_dnsname(lp):
     '''return the full DNS name of our own host. Used as a default
        for hostname when running status queries'''
     return lp.get('netbios name').lower() + "." + lp.get('realm').lower()
 
 
-
 def netcmd_finddc(lp, creds):
     '''return domain-name of a writable/ldap-capable DC for the domain.'''
     net = Net(creds=creds, lp=lp)