diff hgext/largefiles/overrides.py @ 15170:c1a4a3220711

largefiles: fix over-long lines
author Matt Mackall <mpm@selenic.com>
date Thu, 29 Sep 2011 17:04:57 -0500
parents aa262fff87ac
children 7c604d8c7e83
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py	Thu Sep 29 16:48:48 2011 -0500
+++ b/hgext/largefiles/overrides.py	Thu Sep 29 17:04:57 2011 -0500
@@ -87,7 +87,8 @@
         try:
             lfsize = int(lfsize)
         except ValueError:
-            raise util.Abort(_('largefiles: size must be an integer, was %s\n') % lfsize)
+            raise util.Abort(_('largefiles: size must be an integer, was %s\n')
+                             % lfsize)
 
     lfmatcher = None
     if os.path.exists(repo.wjoin(lfutil.shortname)):
@@ -530,7 +531,8 @@
         finally:
             restorematchfn()
         lfileslist = getattr(repo, '_lfilestoupdate', [])
-        lfcommands.updatelfiles(ui, repo, filelist=lfileslist, printmessage=False)
+        lfcommands.updatelfiles(ui, repo, filelist=lfileslist,
+                                printmessage=False)
         # Empty out the lfiles list so we start fresh next time
         repo._lfilestoupdate = []
         for lfile in modified: