Increased version

pull/1001/head
Piero Toffanin 2019-06-25 13:28:51 -04:00
rodzic c49e460031
commit f7cc5d09da
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1 +1 @@
0.8.0
0.8.1

Wyświetl plik

@ -200,7 +200,7 @@ class OSFMContext:
try:
reconstruction_file = self.path("reconstruction.json")
with open(output, 'w') as fout:
fout.write(json.dumps(camera.get_cameras_from_opensfm(reconstruction_file)))
fout.write(json.dumps(camera.get_cameras_from_opensfm(reconstruction_file), indent=4))
except Exception as e:
log.ODM_WARNING("Cannot export cameras to %s. %s." % (output, str(e)))
else: