From 9d5b918929aafd525e95af454e62d40ffdcf006e Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 5 May 2018 12:25:19 +0200 Subject: [PATCH] [mod] remove useless import --- src/yunohost/data_migrations/0005_postgresql_9p4_to_9p6.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/yunohost/data_migrations/0005_postgresql_9p4_to_9p6.py b/src/yunohost/data_migrations/0005_postgresql_9p4_to_9p6.py index d71a356ed..0e6edf5e6 100644 --- a/src/yunohost/data_migrations/0005_postgresql_9p4_to_9p6.py +++ b/src/yunohost/data_migrations/0005_postgresql_9p4_to_9p6.py @@ -4,7 +4,6 @@ from moulinette.core import MoulinetteError from moulinette.utils.log import getActionLogger from yunohost.tools import Migration -from yunohost.service import _run_service_command logger = getActionLogger('yunohost.migration') @@ -41,4 +40,3 @@ class MyMigration(Migration): p = subprocess.Popen("dpkg --list | grep -q -w {}".format(package_name), shell=True) p.communicate() return p.returncode == 0 -