diff hgext/largefiles/lfutil.py @ 15188:8e115063950d

largefiles: don't break existing tests (syntax error, bad imports)
author Greg Ward <greg@gerg.ca>
date Sat, 01 Oct 2011 16:39:51 -0400
parents 547da6115d1d
children f85c76b16f27
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py	Sat Oct 01 16:18:51 2011 -0500
+++ b/hgext/largefiles/lfutil.py	Sat Oct 01 16:39:51 2011 -0400
@@ -484,7 +484,7 @@
 
 def islfilesrepo(repo):
     return ('largefiles' in repo.requirements and
-            any_(shortname + '/' in f[0] for f in repo.store.datafiles())
+            any_(shortname + '/' in f[0] for f in repo.store.datafiles()))
 
 def any_(gen):
     for x in gen: