diff --git a/fanficfare/story.py b/fanficfare/story.py index 75953fb..4086bd1 100644 --- a/fanficfare/story.py +++ b/fanficfare/story.py @@ -563,7 +563,8 @@ class Story(Configurable): if None in v: v.remove(None) #logger.debug("k:%s v:%s"%(k,v)) - val = ""%"\n
  • ".join(v) + # force ints/floats to strings. + val = "" % "
  • \n
  • ".join([ "%s"%x for x in v ]) elif isinstance(v, (int)): classes.append("int") val = v