diff options
Diffstat (limited to 'gk2kml.py')
-rwxr-xr-x | gk2kml.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ def main(): if args.write: print('Writing to kml file: ' + args.write + '.kml') - template = open('template.kml', 'r', encoding='utf-8') + template = open('template/template.kml', 'r', encoding='utf-8') outf = open(args.write + '.kml', 'w', encoding='utf-8',\ errors='ignore') line = template.readline() |