server: Don't use a keyword for the path argument to makedirs
authorW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:05:34 +0000 (11:05 -0800)
committerW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:23:43 +0000 (11:23 -0800)
commitb0ba3aea15abe2cc5059a9267cada558fe3915af
treebe6031034644f9ab358564501ce954153ff0d584
parente81ad599d1d3ba888c7728a1eaad815c4979fd10
server: Don't use a keyword for the path argument to makedirs

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

  TypeError: makedirs() got an unexpected keyword argument 'path'

[1]: http://docs.python.org/3/library/os.html#os.makedirs
package_cache/server.py