Use relative imports

This commit is contained in:
Loïc Faure-Lacroix
2015-03-18 00:30:54 +03:00
committed by Sandy Carter
parent bc3e1fc445
commit b6118fbed3
5 changed files with 10 additions and 12 deletions

View File

@@ -19,7 +19,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import wizard
import report
import account_banking_make_deposit
import account_move_line
from . import wizard
from . import report
from . import account_banking_make_deposit
from . import account_move_line

View File

@@ -19,4 +19,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import deposit_ticket
from . import deposit_ticket

View File

@@ -19,4 +19,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import add_deposit_items
from . import add_deposit_items

View File

@@ -19,7 +19,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import account_banking_reconciliation
import account_move_line
import report
from . import account_banking_reconciliation
from . import account_move_line
from . import report

View File

@@ -19,5 +19,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import reconciliation
from . import reconciliation