Commit d71c6c96636ed40233a6456f6ebdcafc6874010b

Authored by Henry Fredrick Schreiner
1 parent f44aeff7

Remove vestige of Py 3.6

Showing 1 changed file with 1 additions and 1 deletions
scripts/MakeSingleHeader.py
... ... @@ -29,7 +29,7 @@ def MakeHeader(out):
29 29 output += '\n// From {inc}\n\n'.format(inc=inc)
30 30 output += inner[inner.find('namespace'):]
31 31  
32   - header_list = '\n'.join(f'#include <'+h+'>' for h in headers)
  32 + header_list = '\n'.join('#include <'+h+'>' for h in headers)
33 33  
34 34 output = '''\
35 35 #pragma once
... ...