From 0a6954584d562184cc2f6a1e442f4fffdf7c1ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 11 Jul 2005 22:39:19 +0000 Subject: [PATCH] =?UTF-8?q?mod=C3=BClleri=20m=C3=BCmk=C3=BCn=20oldu=C4=9Fu?= =?UTF-8?q?nca=20ge=C3=A7=20import=20edelim.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/cli/pisicli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pisi/cli/pisicli.py b/pisi/cli/pisicli.py index 5adf953c..6e549fe0 100644 --- a/pisi/cli/pisicli.py +++ b/pisi/cli/pisicli.py @@ -4,7 +4,6 @@ import sys from optparse import OptionParser import pisi -from pisi.cli import buildhelper, installhelper, indexhelper from pisi.config import config usage = """%prog [options] [arguments] @@ -180,6 +179,7 @@ usage: info ... pass def index(self): + from pisi.cli import indexhelper if not self.args: self.help("index") @@ -198,6 +198,7 @@ usage: info ... default=True, help="xxxx") def install(self): + from pisi.cli import installhelper if not self.args: self.help("install") for arg in self.args: @@ -209,6 +210,8 @@ usage: info ... pass def build(self): + from pisi.cli import buildhelper + if not self.args: self.help("build")