Convert Python scripts to be more PEP8-like
[dyn-nsupdate.git] / server-scripts / update
index 3b3ab5308ee35cf208eb6b27df60d2feb277d0a2..3d6331eacc9f52187839aa20e9b40d7a7f073d56 100755 (executable)
@@ -48,9 +48,9 @@ p = subprocess.Popen(["/var/lib/named/dyn-nsupdate", domain, password, ip], stdo
 
 # check what it did
 if p.returncode or stderr or stdout:
-       # error :/
-       print "There was an error while updating the DNS: Return code %d" % p.returncode
-       if stdout: print stdout
-       if stderr: print stderr
+    # error :/
+    print "There was an error while updating the DNS: Return code %d" % p.returncode
+    if stdout: print stdout
+    if stderr: print stderr
 else:
-       print "good",ip
+    print "good",ip