diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sbin/bcfg2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sbin/bcfg2 b/src/sbin/bcfg2 index e2d7c3b8e..e630a5f29 100644 --- a/src/sbin/bcfg2 +++ b/src/sbin/bcfg2 @@ -92,7 +92,7 @@ if __name__ == '__main__': sysexit(1) if setup['bundle']: - c = XML("<Configuration version='2.0'/>") + c = Element("Configuration", version='2.0') for child in cfg.getroot().getchildren(): if ((child.tag == 'Bundle') and (child.attrib['name'] == setup['bundle'])): c.append(child) |