Kiln » Fog Creek
Clone URL:  

fix infinite recursion

Changeset 92ffd1f2744d

Parent 420f62fbc076

by Profile picture of User 12Benjamin Pollack <benjamin@fogcreek.com>

Changes to one file · Browse files at 92ffd1f2744d Showing diff from parent 420f62fbc076 Diff from another changeset...

 
29
30
31
32
 
33
34
35
36
 
37
38
39
 
29
30
31
 
32
33
34
35
 
36
37
38
39
@@ -29,11 +29,11 @@
  if hasattr(repo.__class__, 'do_cmd'):   def do_cmd(self, cmd, **args):   args['kbfiles'] = 'true' - return super(repo.__class__, self).do_cmd(cmd, **args) + return super(kbfilesrepo, self).do_cmd(cmd, **args)   if hasattr(repo.__class__, '_callstream'):   def _callstream(self, cmd, **args):   args['kbfiles'] = 'true' - return super(repo.__class__, self)._callstream(cmd, **args) + return super(kbfilesrepo, self)._callstream(cmd, **args)   repo.__class__ = kbfilesrepo     # bfiles doesn't support non-local repositories -- get out quick in