[PATCH] largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo

Hao Lian hao at fogcreek.com
Tue Oct 18 16:23:44 CDT 2011


# HG changeset patch
# User Hao Lian <hao at fogcreek.com>
# Date 1318972143 14400
# Branch stable
# Node ID 9b499aaabb70299dedde069f2013903a1847f400
# Parent  4b71c17caeb8ceb8e847d48eaad0a05fd9c9c2f6
largefiles: string formatting typo in basestore._openstore where comma is used instead of modulo

diff --git a/hgext/largefiles/basestore.py b/hgext/largefiles/basestore.py
--- a/hgext/largefiles/basestore.py
+++ b/hgext/largefiles/basestore.py
@@ -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)


More information about the Mercurial-devel mailing list