예제 #1
0
 def findoutgoing(orig, *args, **opts):
     capable = getattr(args[1], 'capable', lambda x: False)
     if capable('subversion'):
         return wrappers.findoutgoing(*args, **opts)
     else:
         return orig(*args, **opts)
예제 #2
0
 def findoutgoing(orig, *args, **opts):
     capable = getattr(args[1], 'capable', lambda x: False)
     if capable('subversion'):
         return wrappers.findoutgoing(*args, **opts)
     else:
         return orig(*args, **opts)
예제 #3
0
 def findoutgoing(self, remote, base=None, heads=None, force=False):
     return wrappers.findoutgoing(repo, remote, heads, force)
예제 #4
0
파일: svnrepo.py 프로젝트: avuori/dotfiles
 def findoutgoing(self, remote, base=None, heads=None, force=False):
     return wrappers.findoutgoing(repo, remote, heads, force)