changeset 29644:ce4ac5d19cb8 stable

doc: trim newline at the end of exception message
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Mon, 01 Aug 2016 06:08:25 +0900
parents 8960fcb76ca4
children 3b4d69b3988d
files hgext/largefiles/lfutil.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py	Sun Jul 31 05:39:59 2016 +0900
+++ b/hgext/largefiles/lfutil.py	Mon Aug 01 06:08:25 2016 +0900
@@ -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)