~johncarr/dulwich/git-serve

« back to all changes in this revision

Viewing changes to dulwich/client.py

  • Committer: John Carr
  • Date: 2009-01-19 18:41:17 UTC
  • Revision ID: john.carr@unrouted.co.uk-20090119184117-53ob2ssdxg0krent
Don't need to be passed stuff..

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
 
159
159
class SubprocessGitClient(GitClient):
160
160
 
 
161
    def __init__(self):
 
162
        pass
 
163
 
161
164
    def _connect(self, service, *args):
162
165
        argv = [service] + list(args)
163
166
        proc = subprocess.Popen(argv, bufsize=0,