diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-10-11 02:32:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-11 02:32:03 +0000 |
commit | 6d1312d00a3149420db905c6bdfe2756abc55695 (patch) | |
tree | a21edfc62f6d56d4bd722494edb592045f9ec287 /qtip.py | |
parent | 49a6694e6c286a12fcdc3b130315b92c1445e05b (diff) | |
parent | 8c93dffbb4bf51e60096cab465dbd2a5f62feb34 (diff) |
Merge "Rename class cli to Cli"
Diffstat (limited to 'qtip.py')
-rw-r--r-- | qtip.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,13 +6,13 @@ # which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-from func.cli import cli
+from func.cli import Cli
import os
def main():
os.system('./data/file_permission.sh')
- cli()
+ Cli()
# os.system('cd data/ref_results && python compute_suite.py')
# os.system('cd data/ref_results && python storage_suite.py')
# os.system('cd data/ref_results && python network_suite.py')
|