# HG changeset patch # User Hao Lian # Date 1318972143 14400 # Node ID 225d30bacabd5d58f8698f44f4d9a307d207ec46 # Parent a0583f984fd111b7c402438937b5d18eea80714b largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo diff -r a0583f984fd1 -r 225d30bacabd hgext/largefiles/basestore.py --- a/hgext/largefiles/basestore.py Tue Oct 18 11:09:11 2011 -0500 +++ b/hgext/largefiles/basestore.py Tue Oct 18 17:09:03 2011 -0400 @@ -199,4 +199,4 @@ except lfutil.storeprotonotcapable: pass - raise util.Abort(_('%s does not appear to be a largefile store'), path) + raise util.Abort(_('%s does not appear to be a largefile store') % path)