server: Don't use a keyword for the path argument to getsize
authorW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:14:54 +0000 (11:14 -0800)
committerW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:23:43 +0000 (11:23 -0800)
commitad73e70aa784d8cc9f750a29cf7942cb303347a6
tree6f9c64daf202efa557744dd383270235a3f65e4e
parentc546a1d6137beddd99d5b1fc814f491be62911bd
server: Don't use a keyword for the path argument to getsize

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

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

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