Skip to content

Commit

Permalink
Merge pull request #38 from gurneyalex/7.0-fix-pylint
Browse files Browse the repository at this point in the history
7.0 fix pylint errors in travis build
  • Loading branch information
lepistone committed Nov 17, 2014
2 parents 53c3726 + 186ede6 commit 6d0de51
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions picking_dispatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
#
##############################################################################
from . import picking_dispatch
import wizard
import report
from . import wizard
from . import report
2 changes: 1 addition & 1 deletion picking_dispatch/report/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import dispatch_report
from . import dispatch_report
8 changes: 4 additions & 4 deletions product_serial/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#
##############################################################################

import product
import stock
import company
import wizard
from . import product
from . import stock
from . import company
from . import wizard
2 changes: 1 addition & 1 deletion product_serial/wizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
#
##############################################################################

import prodlot_wizard
from . import prodlot_wizard
2 changes: 1 addition & 1 deletion stock_cancel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
#
##############################################################################

import stock
from . import stock
6 changes: 3 additions & 3 deletions stock_move_backdating/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import stock
import wizard
import account
from . import stock
from . import wizard
from . import account
2 changes: 1 addition & 1 deletion stock_move_backdating/wizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import stock_partial_picking
from . import stock_partial_picking
2 changes: 1 addition & 1 deletion stock_split_picking/model/stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def split_process(self, cr, uid, ids, context=None):
correct context"""
if context is None:
context = {}
"""Open the partial picking wizard"""
# Open the partial picking wizard
ctx = context.copy()
ctx.update({
'active_model': self._name,
Expand Down

0 comments on commit 6d0de51

Please sign in to comment.