Browse Source

remove unnecessary call to iter()

Sasha Hart 12 years ago
parent
commit
f8ae64c8fb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wsgi/hello.py

+ 1 - 1
wsgi/hello.py

@@ -12,4 +12,4 @@ def app(environ, start_response):
         ('Content-Length', str(len(data)))
     ]
     start_response(status, response_headers)
-    return iter([data])
+    return [data]