Skip to content

Commit

Permalink
Fix tag attributes error
Browse files Browse the repository at this point in the history
  • Loading branch information
CristianCantoro committed Mar 14, 2014
1 parent 2fb20e2 commit 03813bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpages_creator.py
Expand Up @@ -193,8 +193,8 @@ def missing_template_link(self, article):
osm_type=','.join(osm_types)
)

osm_id_dump = json.dumps([int(o) for o in osm_ids])
osm_types_dump = json.dumps(osm_types)
osm_id_dump = repr(json.dumps([int(o) for o in osm_ids]))
osm_types_dump = repr(json.dumps(osm_types))

data = u'data-lat="{lat}" data-lon="{lon}" '\
'data-dim="{dim}" '\
Expand Down

0 comments on commit 03813bd

Please sign in to comment.