Fix config file option set as a list instead of str

This commit is contained in:
Uggla 2016-03-05 15:31:11 +01:00
parent 9a5e417980
commit a5002437f0

View File

@ -345,7 +345,7 @@ if __name__ == '__main__':
configfile = 'PBCONFFILE'
if(arguments['--config']):
configfile = [arguments['--config']]
configfile = arguments['--config']
logger.debug("Overwrite configuration specified by user at %s"
% configfile)