From cedb153852add9f4d38724bbdbdf66074ea44317 Mon Sep 17 00:00:00 2001 From: "wu.zhihui" Date: Tue, 29 Nov 2016 11:29:13 +0800 Subject: correct module path in qtip.py See https://build.opnfv.org/ci/job/qtip-fuel-zte-pod3-daily-master/43/console for details. Change-Id: Ic12c4143bd29e7d56ac68e8a3317c8b3f36a274f Signed-off-by: wu.zhihui --- qtip/qtip.py | 18 ------------------ qtip/run.py | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 qtip/qtip.py create mode 100644 qtip/run.py diff --git a/qtip/qtip.py b/qtip/qtip.py deleted file mode 100644 index 66ff674f..00000000 --- a/qtip/qtip.py +++ /dev/null @@ -1,18 +0,0 @@ -############################################################################## -# Copyright (c) 2015 Dell Inc and others. -# Copyright (c) 2016 ZTE corp. and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## -from qtip.utils.cli import Cli - - -def main(): - Cli() - - -if __name__ == "__main__": - main() diff --git a/qtip/run.py b/qtip/run.py new file mode 100644 index 00000000..a2c26eda --- /dev/null +++ b/qtip/run.py @@ -0,0 +1,18 @@ +############################################################################## +# Copyright (c) 2015 Dell Inc and others. +# Copyright (c) 2016 ZTE corp. and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +from utils.cli import Cli + + +def main(): + Cli() + + +if __name__ == "__main__": + main() -- cgit 1.2.3-korg