Please use this template!
If the issue is a request please specify that it is a request in the title (Example: [REQUEST] more features). If this is a question regarding 'twint' please specify that it's a question in the title (Example: [QUESTION] What is x?). Please only submit issues related to 'twint'. Thanks.
Make sure you've checked the following:
if get.Limit(self.config.Limit, self.count):
self.d._until = self.d_until - _days
self.feed = [-1]
.py", line 55, in main
self.d._until = self.d_until - _days
AttributeError: 'Search' object has no attribute 'd_until'
in search.py line 55
if get.Limit(self.config.Limit, self.count):
self.d._until = self.d_until - _days
self.feed = [-1]
there is a . left
the correct code is
if get.Limit(self.config.Limit, self.count):
self.d._until = self.d._until - _days
self.feed = [-1]
Using Windows, Linux? What OS version? Running this in Anaconda? Jupyter Notebook? Terminal?
Please confirm
Thanks @Nestor75
you most welcome :)