diff --git a/build.py b/build.py
index 951b429..6054f05 100644
--- a/build.py
+++ b/build.py
@@ -14,10 +14,10 @@ if __name__ == '__main__':
logging.info('reading csv')
reader = csv.DictReader(file)
for row in reader:
- subst += f'
| {row['service']} | '
- '{row["url"]} | '
- '{row["ip"]} | '
- '{row["comment"]} | '
+ subst += f'
| {row['service']} | ' + \
+ f'{row["url"]} | ' + \
+ f'{row["ip"]} | ' + \
+ f'{row["comment"]} | '
logging.info('write file')
with open('template/template.html') as inf: