Fix broken unwanted change to pvc.py

This commit is contained in:
Joshua Boniface 2019-12-25 13:35:31 -05:00
parent b92c1876d6
commit 1f6f486b3b
1 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# pvc.py - PVC API command-line interface
# pvc.py - PVC client command-line interface
# Part of the Parallel Virtual Cluster (PVC) system
#
# Copyright (C) 2018-2019 Joshua M. Boniface <joshua@boniface.me>
@ -29,7 +29,15 @@ import difflib
import re
import colorama
import yaml
import requests
import client_lib.ansiprint as ansiprint
import client_lib.common as pvc_common
import client_lib.cluster as pvc_cluster
import client_lib.node as pvc_node
import client_lib.vm as pvc_vm
import client_lib.network as pvc_network
import client_lib.ceph as pvc_ceph
#import client_lib.provisioner as pvc_provisioner
myhostname = socket.gethostname().split('.')[0]
zk_host = ''