Removed spurious print statement.

This commit is contained in:
Jussi Pakkanen 2013-01-14 01:17:53 +02:00
parent 3eab390158
commit faaa0df78b
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ def do_conf_file(src, dst, variables):
match = re.search(regex, line)
while match:
varname = match.group(1)
print(varname)
if varname in variables:
var = variables[varname]
if isinstance(var, str):