diff --git a/daemons/ganeti-watcher b/daemons/ganeti-watcher index 32c3ac475413157c29c24e26d3eb84353d207eef..9a2a2a8e033db1e5c9beaf5bc3d1aa5d8c281d8e 100755 --- a/daemons/ganeti-watcher +++ b/daemons/ganeti-watcher @@ -64,16 +64,6 @@ class NotMasterError(errors.GenericError): """Exception raised when this host is not the master.""" -def Indent(s, prefix='| '): - """Indent a piece of text with a given prefix before each line. - - @param s: the string to indent - @param prefix: the string to prepend each line - - """ - return "%s%s\n" % (prefix, ('\n' + prefix).join(s.splitlines())) - - def ShouldPause(): """Check whether we should pause.