Skip to content

Commit

Permalink
Remove +Launch now that flights have separate names, remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrichman committed Sep 3, 2012
1 parent 656a35a commit 68d1ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions habitat_calendar/cal.py
Expand Up @@ -129,7 +129,7 @@ def calendar():
desc.append(description)

e = icalendar.Event()
e.add('summary', flight['name'] + " Launch")
e.add('summary', flight['name'])
e.add('description', "\n".join(desc))
e.add('location', flight_location(flight))
e.add('dtstart', launch_datetime(flight))
Expand All @@ -141,4 +141,4 @@ def calendar():
return Response(cal.to_ical(), mimetype='text/calendar')

if __name__ == "__main__":
app.run(debug=True, host='0.0.0.0')
app.run()

0 comments on commit 68d1ab2

Please sign in to comment.