Merge pull request #4 from charleshofer/assoc-fix

Fixed openbmc-sfw for associations
diff --git a/openbmc-sfw b/openbmc-sfw
index ef07c2f..c425ceb 100755
--- a/openbmc-sfw
+++ b/openbmc-sfw
@@ -113,7 +113,7 @@
             # Look for our the image with the given version in software
             for path in software:
                 image = self.get_image(path)
-                if image_version == image['Version']:
+                if 'Version' in image and image_version == image['Version']:
                     return path.split('/')[-1]
             time.sleep(15)
         return False