diff uploader/dispatcher.py @ 6:d2990750e5d6

fix the way query string works
author k0s <k0scist@gmail.com>
date Sun, 27 Dec 2009 16:35:48 -0500
parents e5efa999911a
children f60ad139acc1
line wrap: on
line diff
--- a/uploader/dispatcher.py	Sun Dec 27 16:30:38 2009 -0500
+++ b/uploader/dispatcher.py	Sun Dec 27 16:35:48 2009 -0500
@@ -24,10 +24,7 @@
         self.auth = self.auth.lower() == 'true'
         self.subpath = self.subpath.lower() == 'true'
         if self.subpath:
-            if self.query_string:
-                self.handlers = [ SubpathGet, SubpathPost ]
-            else:
-                self.handlers = [ SubpathPost ]
+            self.handlers = [ SubpathGet, SubpathPost ]
         else:
             self.handlers = [ Get, Post ]