Skip to content

Commit

Permalink
Merge pull request #4 from Apstra/develop
Browse files Browse the repository at this point in the history
Merge in develop changes to master
  • Loading branch information
bobbywatson3 committed Jan 4, 2017
2 parents 178521c + 1a91d57 commit 6809dd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pylib/aeon/cumulus/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ def gather_facts(self):
facts['serial_number'] = decoded['Serial Number']
facts['hw_model'] = decoded['Product Name']
facts['hw_part_number'] = decoded['Part Number']
facts['hw_version'] = decoded['Label Revision']
facts['service_tag'] = decoded['Service Tag']
facts['hw_version'] = decoded.get('Label Revision', 'no-hw-version')
facts['service_tag'] = decoded.get('Service Tag', 'no-service-tag')
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
setup(
name="aeon-venos",
namespace_packages=['aeon'],
version="0.2.0",
version="0.3.0",
author="Jeremy Schulman",
author_email="jeremy@apstra.com",
description=("Aeon vendor NOS driver library"),
Expand Down

0 comments on commit 6809dd3

Please sign in to comment.