|
@@ -52,10 +52,10 @@ def main():
|
|
|
volume_frame['source_type'] = source_type
|
|
|
volume_frame['source_path'] = volume_file.absolute_path
|
|
|
volume_frames.append(volume_frame)
|
|
|
+
|
|
|
if parse_version_string(pandas.__version__) < (0, 23):
|
|
|
united_volume_frame = pandas.concat(volume_frames, ignore_index=True)
|
|
|
else:
|
|
|
-
|
|
|
united_volume_frame = pandas.concat(volume_frames, ignore_index=True, sort=False)
|
|
|
print(united_volume_frame.to_csv(index=False))
|
|
|
|