Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
using first name, last name, and event type for venue
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hamblen committed Oct 22, 2010
1 parent 8761fd5 commit 6b6f6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmlevents.py
Expand Up @@ -65,7 +65,7 @@ def text(name):
"local_time": int(time.mktime(dt.timetuple())) * 1000,
"zip": text("t_store_zip_code"),
"address1": text("t_store_address"),
"venue_name": "[OFFICIAL] " + text("t_short_description"),
"venue_name": "[OFFICIAL] " + "%s %s %s" % (first or "", last or "", text("t_event_type")),
"title": text("t_short_description"), # not visible on site
"description": desc,
"organize": "true",
Expand Down

0 comments on commit 6b6f6ae

Please sign in to comment.