From 613e5a0f2a4c0094e2e2fbba3f71bbbcb7d8c710 Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Tue, 1 Oct 2013 11:58:32 +0800 Subject: [PATCH] Fix wrong import of tools.mkdir --- lib/commands/check.py | 2 +- lib/commands/install.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/commands/check.py b/lib/commands/check.py index 97e8b45..d81bf77 100644 --- a/lib/commands/check.py +++ b/lib/commands/check.py @@ -26,7 +26,7 @@ import os import shutil from lib import git from lib.command import Command -from tools import mkdir +from lib.tools import mkdir class CheckCommand(Command): diff --git a/lib/commands/install.py b/lib/commands/install.py index 80c3c53..8a36c4e 100644 --- a/lib/commands/install.py +++ b/lib/commands/install.py @@ -26,7 +26,7 @@ import os import logging from lib import db from lib.command import Command -from tools import mkdir +from lib.tools import mkdir DB = db.DB -- 2.11.0