Merge branch 'master' into develop
This commit is contained in:
commit
5795ba1e91
2 changed files with 2 additions and 2 deletions
|
|
@ -64,7 +64,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install wheel
|
pip install wheel
|
||||||
pip install psycopg2-binary
|
pip install psycopg2-binary==2.8.6 # fix issue for Django 2.2
|
||||||
pip install mysqlclient
|
pip install mysqlclient
|
||||||
pip install coveralls
|
pip install coveralls
|
||||||
pip install codacy-coverage
|
pip install codacy-coverage
|
||||||
|
|
|
||||||
|
|
@ -195,7 +195,7 @@ An "emitter" object must have a function
|
||||||
// to listen to cmdname events.
|
// to listen to cmdname events.
|
||||||
//
|
//
|
||||||
var on = function (cmdname, listener) {
|
var on = function (cmdname, listener) {
|
||||||
if (typeof(listener === 'function')) {
|
if (typeof(listener) === 'function') {
|
||||||
listeners[cmdname] = listener;
|
listeners[cmdname] = listener;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue