# HG changeset patch
# User FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
# Date 1469999305 -32400
#      Mon Aug 01 06:08:25 2016 +0900
# Branch stable
# Node ID ce4ac5d19cb81c6955c69e92a0122518ecb9b593
# Parent  8960fcb76ca490b453cf45cba026f60a6d64e9ef
doc: trim newline at the end of exception message

diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py
--- a/hgext/largefiles/lfutil.py
+++ b/hgext/largefiles/lfutil.py
@@ -89,7 +89,7 @@
             return os.path.join(home, '.cache', longname)
     else:
         raise error.Abort(_('unknown operating system: %s\n') % os.name)
-    raise error.Abort(_('unknown %s usercache location\n') % longname)
+    raise error.Abort(_('unknown %s usercache location') % longname)
 
 def inusercache(ui, hash):
     path = usercachepath(ui, hash)