bug 296202 - fix missing nit

git-svn-id: svn://10.0.0.236/trunk@209259 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mattwillis%gmail.com
2006-09-06 12:04:05 +00:00
parent d2cd013ed3
commit 417ef62361

View File

@@ -270,8 +270,8 @@ calCalendarManager.prototype = {
(calendar.type == "storage" || calendar.type == "memory")) {
try {
calendar.deleteCalendar(calendar, null);
} catch(ex) {
dump("error purging calendar:"+ex+'\n');
} catch (e) {
Components.utils.reportError("error purging calendar: " + e);
}
}
},