(py-guess-indent-offset): Only print message about py-indent-offset
when in an interactive session (suggested by B. Wiener).
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 61ae465..96da5de 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -1802,9 +1802,10 @@
       (funcall (if global 'kill-local-variable 'make-local-variable)
 	       'py-indent-offset)
       (setq py-indent-offset new-value)
-      (message "%s value of py-indent-offset set to %d"
-	       (if global "Global" "Local")
-	       py-indent-offset))
+      (or noninteractive
+	  (message "%s value of py-indent-offset set to %d"
+		   (if global "Global" "Local")
+		   py-indent-offset)))
     ))
 
 (defun py-comment-indent-function ()