We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1913c0e commit f0c1616Copy full SHA for f0c1616
2 files changed
acedatacloud_scaffold/__version__.py
@@ -1,3 +1,3 @@
1
-VERSION = (0, 7, 4)
+VERSION = (0, 7, 5)
2
3
__version__ = '.'.join(map(str, VERSION))
acedatacloud_scaffold/handlers/callback.py
@@ -33,6 +33,9 @@ def write_index(self):
33
})
34
self.finish()
35
self._finished = False
36
+ # this flag used for checking if headers has been written,
37
+ # if headers not written, we can continue return error sync
38
+ self._headers_written = False
39
# this flag used for checking if index has been written,
40
# if index not written, we can return error sync
41
self.index_written = True
0 commit comments