Skip to content

Commit

Permalink
Fixed a little bug...
Browse files Browse the repository at this point in the history
  • Loading branch information
dodo committed Jan 30, 2011
1 parent 7b6506e commit 3a09976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/parse.py
Expand Up @@ -135,7 +135,7 @@ def parse_twitter(url, post):
return post


def parse_identica(url, post):
def parse_statusnet(url, post):
post['user']['profile_url'] = post['user']['statusnet_profile_url']
return post

Expand Down Expand Up @@ -241,6 +241,6 @@ def pythonize_post(blob):

services = {
'twitter': drug(parse = parse_twitter),
'statusnet': drug(parse = parse_identica),
'statusnet': drug(parse = parse_statusnet),
}

0 comments on commit 3a09976

Please sign in to comment.