diff options
author | Christopher Kenna <cjk@cs.unc.edu> | 2012-11-18 18:38:56 -0500 |
---|---|---|
committer | Christopher Kenna <cjk@cs.unc.edu> | 2012-11-18 18:38:56 -0500 |
commit | d5dc526dd2aeb83c552e93ac829d35a2b7b9ee79 (patch) | |
tree | ab1e21c1efc435e231872d9035bc5982168e78a6 /conferences.py | |
parent | d1f0f21ac0b921f7a5402d6d6aa7717cfc65ee02 (diff) |
Update conferences.
Diffstat (limited to 'conferences.py')
-rwxr-xr-x | conferences.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conferences.py b/conferences.py index 8f22d23..170f621 100755 --- a/conferences.py +++ b/conferences.py | |||
@@ -48,7 +48,7 @@ class ConferenceDate(object): | |||
48 | ret.append('–') | 48 | ret.append('–') |
49 | ret.append(end.dt.strftime('{0}, %Y'.format(end.dt.day))) | 49 | ret.append(end.dt.strftime('{0}, %Y'.format(end.dt.day))) |
50 | else: | 50 | else: |
51 | ret.extend([cls.html_date(start), '&endash;', | 51 | ret.extend([cls.html_date(start), '–', |
52 | cls.html_date(end)]) | 52 | cls.html_date(end)]) |
53 | return ' '.join(ret) | 53 | return ' '.join(ret) |
54 | 54 | ||