prevent extra newlines when hosts changes
authorsmbaker <smbaker@fc8clean.lan>
Mon, 14 Jan 2013 21:02:48 +0000 (13:02 -0800)
committersmbaker <smbaker@fc8clean.lan>
Mon, 14 Jan 2013 21:02:48 +0000 (13:02 -0800)
plugins/hostmap.py

index 3d030e6..ccbea4b 100644 (file)
@@ -71,7 +71,7 @@ def GetSlivers(data, config=None, plc=None):
 
                 # remove anything between PREFIX and SUFFIX from contents
 
-                pattern = PREFIX + ".*" + SUFFIX
+                pattern = PREFIX + ".*" + SUFFIX + "\n"
                 regex = re.compile(pattern, re.DOTALL)
                 if regex.search(contents) != None:
                     contents = regex.sub(hostmap, contents)