aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-28 01:00:35 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:46:50 +0200
commit68de408908a2cec9b0df1f67fe91939747e774e7 (patch)
tree46c8aa43ad2b9b67d35cddd2e55c60428d2d657d /lib
parentcb82da27fc37ebe74aa9678506e72eb1a7308ca3 (diff)
downloadbugzilla-triage-68de408908a2cec9b0df1f67fe91939747e774e7.tar.gz
Two small typos
* it is config.XorgLogAnalysis not lowercase one * timeSheetRecordsPrinter needs to be declared, otherwise it is not available inside of the logger.js module itself.
Diffstat (limited to 'lib')
-rw-r--r--lib/logger.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/logger.js b/lib/logger.js
index 0b18c1b..dce3bad 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -78,7 +78,8 @@ exports.generateTimeSheet = function generateTimeSheet() {
libbz.openURLInNewTab("data:text/html;charset=utf-8," + docHTML);
};
-exports.timeSheetRecordsPrinter = function timeSheetRecordsPrinter(records, date) {
+var timeSheetRecordsPrinter = exports.timeSheetRecordsPrinter =
+ function timeSheetRecordsPrinter(records, date) {
var commentBugRE = new RegExp("[bB]ug\\s+([0-9]+)","g");
// sort the records into temporary array
var tmpArr = [];