Skip to content

Commit

Permalink
Import the correct module after rename and also set the version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Jan 6, 2014
1 parent 76e4a12 commit 1d50444
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from distutils.core import setup

setup(name='py-vpoller',
version='1.0.0',
version='0.1.0',
description='VMware vSphere Distributed Pollers',
author='Marin Atanasov Nikolov',
author_email='dnaeon@gmail.com',
Expand Down
6 changes: 3 additions & 3 deletions src/vpoller/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
from time import asctime, strftime

import zmq
from vmconnector.core import VMConnector
from vconnector.core import VConnector
from vpoller.daemon import Daemon
from pysphere import MORTypes

Expand Down Expand Up @@ -377,7 +377,7 @@ def process_mgmt_message(self, msg):
else:
return "Unknown command '%s' received" % msg["cmd"]

class VSphereAgent(VMConnector):
class VSphereAgent(VConnector):
"""
VSphereAgent class
Expand All @@ -386,7 +386,7 @@ class VSphereAgent(VMConnector):
These are the worker agents that do the actual polling from the vCenters.
Extends:
VMConnector
VConnector
"""
def get_host_property(self, msg):
Expand Down

0 comments on commit 1d50444

Please sign in to comment.