Skip to content

Commit

Permalink
Initial attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMarangoni committed Feb 23, 2019
1 parent bb37bce commit 34ca5fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bounce/db/club.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ def insert(session, name, description, website_url, facebook_url,
club = Club(
name=name,
description=description,
website_url=website_url,
facebook_url=facebook_url,
instagram_url=instagram_url,
twitter_url=twitter_url)
website_url=(website_url, None),
facebook_url=(facebook_url,None),
instagram_url=(instagram_url,None),
twitter_url=(twitter_url,None))
session.add(club)
session.commit()

Expand Down

0 comments on commit 34ca5fc

Please sign in to comment.