server: Don't use a keyword for the urlstring argument to urlparse
authorW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:11:24 +0000 (11:11 -0800)
committerW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:23:43 +0000 (11:23 -0800)
commitc546a1d6137beddd99d5b1fc814f491be62911bd
tree7b73110e88e238eb771fcf70b331afa2567371f4
parentb0ba3aea15abe2cc5059a9267cada558fe3915af
server: Don't use a keyword for the urlstring argument to urlparse

Despite being documented as urlstring [1], using a keyword argument
raises a TypeError:

  TypeError: urlparse() got an unexpected keyword argument 'urlstring'

[1]: http://docs.python.org/3/library/urllib.parse.html#urllib.parse.urlparse
package_cache/server.py