witten
/
luminotes
Archived
1
0
Fork 0

Converting Decimal to float when returning rank.

This commit is contained in:
Dan Helfman 2008-10-30 15:39:29 -07:00
parent 7a53b42372
commit ab591a53ce
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ class Notebooks( object ):
new_revision = new_revision,
previous_revision = previous_revision,
storage_bytes = user and user.storage_bytes or 0,
rank = note.rank,
rank = float( note.rank ),
)
@expose( view = Json )