Merge lp:~camptocamp/account-financial-tools/6.1-fix-1276998 into lp:~account-core-editors/account-financial-tools/6.1
Proposed by
Yannick Vaucher @ Camptocamp
on 2014-02-06
Status: | Merged |
---|---|
Merged at revision: | 108 |
Proposed branch: | lp:~camptocamp/account-financial-tools/6.1-fix-1276998 |
Merge into: | lp:~account-core-editors/account-financial-tools/6.1 |
Diff against target: |
56 lines (+5/-10) 1 file modified
currency_rate_update/currency_rate_update.py (+5/-10) |
To merge this branch: | bzr merge lp:~camptocamp/account-financial-tools/6.1-fix-1276998 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Alexis de Lattre (community) | code review and tests with openerp 6.1 | 2014-02-06 | Approve on 2014-02-06 |
Alexandre Fayolle - camptocamp | code review, no test | 2014-02-06 | Approve on 2014-02-06 |
Pedro Manuel Baeza | code review | Approve on 2014-02-06 | |
Review via email:
|
To post a comment you must log in.
I'm just using the self.logger which is instantiated in Currency_
This fix is a simple fix to restore currency_
lp:~camptocamp/account-financial-tools/6.1-fix-1276998
updated
on 2014-02-06
- 109. By Yannick Vaucher @ Camptocamp on 2014-02-06
-
[FIX] replace netsvc notifyChannel by logger.info and remove import of netsvc
Pedro Manuel Baeza (pedro.baeza) wrote : | # |
OK then, I don't see that instantiation on MP, so my question was by that.
Regards.
review:
Approve
(code review)
line 55 could use self.logger.
review:
Approve
(code review, no test)
review:
Approve
(code review and tests with openerp 6.1)
I fast tracked this one and merged it a moment ago.
Why do you put self.logger?
Usual practice is to declare one variable:
logger = logging. get(self. __name_ _)
And then use it.
Regards.