summaryrefslogtreecommitdiffstats
path: root/conferences.py
diff options
context:
space:
mode:
authorChristopher Kenna <cjk@cs.unc.edu>2012-11-18 18:38:56 -0500
committerChristopher Kenna <cjk@cs.unc.edu>2012-11-18 18:38:56 -0500
commitd5dc526dd2aeb83c552e93ac829d35a2b7b9ee79 (patch)
treeab1e21c1efc435e231872d9035bc5982168e78a6 /conferences.py
parentd1f0f21ac0b921f7a5402d6d6aa7717cfc65ee02 (diff)
Update conferences.
Diffstat (limited to 'conferences.py')
-rwxr-xr-xconferences.py2
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('&ndash;') 48 ret.append('&ndash;')
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), '&ndash;',
52 cls.html_date(end)]) 52 cls.html_date(end)])
53 return ' '.join(ret) 53 return ' '.join(ret)
54 54