Fix command formatting

This commit is contained in:
2017-05-27 19:01:06 +01:00
parent 7b0eaf0fba
commit 7b02479584

View File

@@ -152,7 +152,7 @@ def main():
# reload RPZ
if args.reloadzone:
_logger.info('Informing Bind to reload the zone')
res = subprocess.call('rndc reload %' % config['origin'], shell=True)
res = subprocess.call('rndc reload %s' % config['origin'], shell=True)
if __name__ == '__main__':
main()