Skip to content

Commit

Permalink
Remove some typos (non critical) and a debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Richter committed Jul 15, 2014
1 parent 40578c3 commit 83a89b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions figo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,10 @@ class User(ModelBase):
"""Internal figo Connect user ID."""

name = None
""""First and last name."""
"""First and last name."""

email = None
""""Email address."""
"""Email address."""

address = None
"""Postal address for bills, etc."""
Expand All @@ -394,10 +394,10 @@ class User(ModelBase):
"""This flag indicates whether the email address has been verified."""

send_newsletter = None
""""This flag indicates whether the user has agreed to be contacted by email."""
"""This flag indicates whether the user has agreed to be contacted by email."""

language = None
""""Two-letter code of preferred language."""
"""Two-letter code of preferred language."""

premium = None
"""This flag indicates whether the figo Account plan is free or premium."""
Expand Down
1 change: 0 additions & 1 deletion web_demo/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def figo_format(value, *args, **kwargs):
def root(current_account_id=None):
# check whether the user is logged in
if not 'figo_token' in session:
print connection.login_url(scope="accounts=ro transactions=ro balance=ro user=ro", state="qweqwe")
return redirect(connection.login_url(scope="accounts=ro transactions=ro balance=ro user=ro", state="qweqwe"))

# open user figo connection
Expand Down

0 comments on commit 83a89b8

Please sign in to comment.