Browse Source

Remove useless nested tuples

Guillaume Ayoub 9 years ago
parent
commit
88d558f9fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      radicale/__init__.py

+ 1 - 1
radicale/__init__.py

@@ -271,7 +271,7 @@ class Application:
     def __call__(self, environ, start_response):
     def __call__(self, environ, start_response):
         """Manage a request."""
         """Manage a request."""
 
 
-        def response(status, headers=(()), answer=None):
+        def response(status, headers=(), answer=None):
             headers = dict(headers)
             headers = dict(headers)
             # Set content length
             # Set content length
             if answer:
             if answer: