Commit 94e4c2e3 authored by Andrii Marynets's avatar Andrii Marynets

Fix url creating

parent ef7f5415
......@@ -54,7 +54,7 @@ class CompanyMaker:
def _make_list_for_cb(self):
for i in self.in_site:
name = i.name.replace(' ', '-').replace('.', '-')
self.companies.append(Company(i.id, 'http://www.crunchbase.com/organization/{}/press?page=1'.format(name),
self.companies.append(Company(i.id, 'http://www.crunchbase.com/organization/{}/timeline/timeline'.format(name.lower()),
None, 2, 2, i.name))
def _make_list_for_nanalyze(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment