Catch all exceptions

Because sometimes the sledgehammer solution is the best.

Change-Id: I129ec2bfe7f93c26ab639280946b90ef61d4529c
diff --git a/fudash/main.py b/fudash/main.py
index e140006..81be120 100644
--- a/fudash/main.py
+++ b/fudash/main.py
@@ -89,7 +89,7 @@
             parser.feed(resp.content)
             parser.close()
             return parser.result
-        except urlfetch.Error:
+        except:
             return BuildResult.ServerError
 
     def get(self):