Facebook Friends Graph fails when friends have a dash in their name
Bug #522487 reported by
Julien Ropé
This bug affects 6 people
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| Facebook Friends Graph |
Fix Released
|
Medium
|
Kamran Riaz Khan | ||
Bug Description
I have friends that have a composed firstname (like : "Jean-Marie"). The dash causes an error in pydot when trying to draw the graph.
I could solve it by modifying fbfriendsgraph.py in ConnectionsPars
I replaced :
edges.append(
by :
name1 = '"%s"' % dictnames[
name2 = '"%s"' % dictnames[
edges.append(
This has solve the problem and allowed me to see the resulting graph.
I don't know if this could cause other issues elsewhere, but at least it worked for me...
Regards,
LittleJawa
| Changed in fbfriendsgraph: | |
| importance: | Undecided → Medium |
| assignee: | nobody → Kamran Riaz Khan (inspirated) |
| Changed in fbfriendsgraph: | |
| status: | Fix Committed → Fix Released |
To post a comment you must log in.
Thanks for the fix, LittleJawa. Committed in revision 3.