Skip to content

Commit

Permalink
[FIX]travis
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronHForgeFlow committed Feb 13, 2017
1 parent c3e311c commit 2df39e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stock_account_operating_unit/model/stock.py
Expand Up @@ -58,13 +58,13 @@ def _account_entry_move(self, quants, move):
):
err = False
if (move.location_id.usage != 'internal' and
move.location_dest_id.usage == 'internal'):
move.location_dest_id.usage == 'internal'):
err = True
if (move.location_id.usage == 'internal' and
move.location_dest_id.usage != 'internal'):
move.location_dest_id.usage != 'internal'):
err = True
if (move.location_id.usage != 'internal' and
move.location_dest_id.usage != 'internal'):
move.location_dest_id.usage != 'internal'):
err = True
if err:
raise exceptions.UserError(
Expand Down

0 comments on commit 2df39e6

Please sign in to comment.