DOC: Weaker modality for history in initialize.

`history` works, with some caveats, in before_trading_start as well.
This commit is contained in:
Scott Sanderson
2015-10-27 14:38:26 -04:00
parent 4826787475
commit 114c3d3bdf
+1 -1
View File
@@ -195,7 +195,7 @@ class HistoryInInitialize(ZiplineError):
"""
Raised when an algorithm calls history() in initialize.
"""
msg = "history() can only be called in handle_data()"
msg = "history() should only be called in handle_data()"
class MultipleSymbolsFound(ZiplineError):