server: Don't use a keyword for the path argument to getmtime
authorW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:16:21 +0000 (11:16 -0800)
committerW. Trevor King <wking@tremily.us>
Thu, 20 Feb 2014 19:23:44 +0000 (11:23 -0800)
commitbf532394ae2ae47d088cb784ab7149f47309e2da
tree2153136c742185c219ddca35a6be863b3c37fd93
parentad73e70aa784d8cc9f750a29cf7942cb303347a6
server: Don't use a keyword for the path argument to getmtime

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

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

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