Skip to content

Commit

Permalink
Update the minimum required version to 1.9.
Browse files Browse the repository at this point in the history
RDaneelOlivav reports that communication was successful with this
version.
  • Loading branch information
jpieper committed Aug 1, 2015
1 parent 4257423 commit 3eaac84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygazebo/pygazebo.py
Expand Up @@ -698,7 +698,7 @@ def _process_message(self, packet):
def _handle_version_init(self, msg):
logger.debug('Manager.handle_version_init' + msg.data)
version = float(msg.data.split(' ')[1])
if version < 2.2:
if version < 1.9:
raise ParseError('Unsupported gazebo version: ' + msg.data)

def _handle_topic_namespaces_init(self, msg):
Expand Down

0 comments on commit 3eaac84

Please sign in to comment.