Index: plugins/FeedsParser.inc
===================================================================
--- plugins/FeedsParser.inc	(revision 83)
+++ plugins/FeedsParser.inc	(working copy)
@@ -272,7 +272,16 @@
     feeds_include_library('http_request.inc', 'http_request');
     $result = http_request_get($this->getValue());
     if ($result->code != 200) {
-      throw new Exception(t('Download of @url failed with code !code.', array('@url' => $this->getValue(), '!code' => $result->code)));
+//      throw new Exception(t('Download of @url failed with code !code.', array('@url' => $this->getValue(), '!code' => $result->code)));
+      $url_clean = str_replace(" ", "%20", $this->getValue());
+      $result = http_request_get($url_clean);
+      if ($result->code != 200) {
+        throw new Exception(t('Download of @url failed with code !code.', array('@url' => $this->getValue(), '!code' => $result->code)));
+      }
     }
     return $result->data;
   }
