def get_projects(self):
for project_line in self.projects.strip().split('\n'):
- parts = project_line.strip().split(' ', 2)
+ parts = project_line.strip().split(None, 2)
if not parts or not parts[0]:
continue
url, lang, desc = (parts + [''] * 2)[:3]
@python_2_unicode_compatible
class UserCard(Card):
preview_html_template = 'organizations/snippets/user.html'
- user = models.ForeignKey(User, unique=True, primary_key=True)
+ user = models.OneToOneField(User, primary_key=True)
def __str__(self):
return str(self.user)