diff --git a/zipline/errors.py b/zipline/errors.py index a8047ffe..1cab758c 100644 --- a/zipline/errors.py +++ b/zipline/errors.py @@ -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):