Fix get_versions string parsing

During the recent rest client refactor the _parse_resp() method was
improved to detect whether there was a single key at the top level
and drop it if there was. However the get_versions() method wasn't
updated at the same time, this led to the 'versions' being
referenced when it was removed from the resp dict. This commit fixes
this by removing the reference to versions.

Change-Id: I92003bd3f8c63a61a0d078d141e86dea4115bb80
diff --git a/tempest/common/rest_client.py b/tempest/common/rest_client.py
index 212d41d..2066d56 100644
--- a/tempest/common/rest_client.py
+++ b/tempest/common/rest_client.py
@@ -204,7 +204,6 @@
     def get_versions(self):
         resp, body = self.get('')
         body = self._parse_resp(body)
-        body = body['versions']
         versions = map(lambda x: x['id'], body)
         return resp, versions