diff hgext/largefiles/basestore.py @ 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 7ab05d752405
children c65f5b6e26d4
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)