diff --git a/cbpi/cli.py b/cbpi/cli.py index b612ec3..483692d 100644 --- a/cbpi/cli.py +++ b/cbpi/cli.py @@ -50,7 +50,8 @@ class CraftBeerPiCli(): print(configtemppath) with open(configtemppath, 'w') as f: - f.write(lines) + for line in lines: + f.write(line) print("/boot/config.txt created")