Skip to content

Commit b905167

Browse files
authored
Update date_chunker.py
1 parent 1abe94b commit b905167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arctic/chunkstore/date_chunker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def to_chunks(self, df, chunk_size):
5050
raise Exception("Chunk size must be one of D, M, Y")
5151

5252
if 'date' not in df.index.names:
53-
raise Exception("Data must be datetime indexed and have an index colum named 'date'")
53+
raise Exception("Data must be datetime indexed and have an index column named 'date'")
5454

5555
dates = [pd.to_datetime(d) for d in df.index.get_level_values('date').drop_duplicates()]
5656
key_array = [self._get_date_chunk(d, chunk_size) for d in dates]

0 commit comments

Comments
 (0)