Treat groups= as default

Previous incarnations of groups support left "groups=" in the
repo .config, which is now treated as "delete all the projects".
Treat empty groups configuration the same as no groups
configuration.

Change-Id: I57dab8dac55bdbf4cc181e2748cd2e4e510764f5
diff --git a/manifest_xml.py b/manifest_xml.py
index 5ffc49e..d20eac2 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -122,7 +122,7 @@
     mp = self.manifestProject
 
     groups = mp.config.GetString('manifest.groups')
-    if groups is None:
+    if not groups:
       groups = 'default'
     groups = [x for x in re.split(r'[,\s]+', groups) if x]