largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo stable
authorHao Lian <hao@fogcreek.com>
Tue, 18 Oct 2011 17:09:03 -0400
branchstable
changeset 15302 225d30bacabd
parent 15301 a0583f984fd1
child 15303 07811b3b119b
largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo
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)