changeset 15302:225d30bacabd stable

largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo
author Hao Lian <hao@fogcreek.com>
date Tue, 18 Oct 2011 17:09:03 -0400
parents a0583f984fd1
children 07811b3b119b
files hgext/largefiles/basestore.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)