Commit 4802ea5ab56a2049382105153c6a682f9e0c90f3

resolved
entry.py
(2 / 8)
  
293293class BackTypeComment(Comment):
294294 pass
295295
296class BlipFMUpdate(MicroBlogEntry):
297 pass
298
299296class DeliciousBookmark(SharedItem):
300297 """Delicious puts tags together, space separated."""
301298 def get_tags(self):
379379 return cursor._rows[0][0]
380380 else:
381381 #TODO: need to output warning and move on, not raise exception
382 #BAD BUG HERE
383 """ If I listen to the same song in a period of time
384 between database updates, rec_updated will be the same!
385 I think... but... then why has this never happened before?"""
386 raise Exception("Cannot determine unqiue entry_id")
382 print cursor._rows
383 raise Exception("Cannot determine unqiue entry_id %d" % cursor.rowcount)
387384
388385class MySpaceBlogEntry(BlogEntry):
389386 def get_content(self):