Remove a few comments and Fixes #232
parent
7883614d2f
commit
77b2e0e3e3
|
@ -1,7 +1,4 @@
|
||||||
"""Python STIX2 FileSystem Source/Sink"""
|
"""Python STIX2 FileSystem Source/Sink"""
|
||||||
# Temporary while we address TODO statement
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
import errno
|
import errno
|
||||||
import io
|
import io
|
||||||
import json
|
import json
|
||||||
|
@ -544,7 +541,6 @@ class FileSystemSink(DataSink):
|
||||||
else:
|
else:
|
||||||
stix_obj = v20.Bundle(stix_obj, allow_custom=self.allow_custom)
|
stix_obj = v20.Bundle(stix_obj, allow_custom=self.allow_custom)
|
||||||
|
|
||||||
# TODO: Better handling of the overwriting case.
|
|
||||||
if os.path.isfile(file_path):
|
if os.path.isfile(file_path):
|
||||||
raise DataSourceError("Attempted to overwrite file (!) at: {}".format(file_path))
|
raise DataSourceError("Attempted to overwrite file (!) at: {}".format(file_path))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue