This commit is contained in:
Joshua McKenty 2013-04-17 13:52:15 -07:00
parent b74fb8c4c8
commit 897d332357
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class Vendor(db.Model):
vendor_name = db.Column(db.String(80), unique=True)
contact_email = db.Column(db.String(120), unique=True)
def __init__(self, username, email):
def __init__(self, vendor_name, email):
self.vendor_name = vendor_name
self.contact_email = contact_email