scripts: Skip thumbnail when it can't be written.

Useful when reference screenshots are on a read-only share.
diff --git a/scripts/snapdiff.py b/scripts/snapdiff.py
index 6e596df..99ad8fd 100755
--- a/scripts/snapdiff.py
+++ b/scripts/snapdiff.py
@@ -142,7 +142,10 @@
                 return
 
             im.thumbnail((thumbSize, thumbSize))
-            im.save(thumb)
+            try:
+                im.save(thumb)
+            except IOError:
+                thumb = image
     else:
         thumb = image
     html.write('        <td><a href="%s"><img src="%s"/></a></td>\n' % (image, thumb))