~ubuntu-branches/ubuntu/vivid/dulwich/vivid

« back to all changes in this revision

Viewing changes to bin/dul-receive-pack

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2014-04-25 02:29:17 UTC
  • mfrom: (1.5.6)
  • Revision ID: package-import@ubuntu.com-20140425022917-ivhlhvgfjkvfpocq
Tags: 0.9.7-1
* New upstream release.
* Use canonical URL in Vcs-Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import sys
23
23
 
24
24
if len(sys.argv) < 2:
25
 
    print >>sys.stderr, "usage: %s <git-dir>" % os.path.basename(sys.argv[0])
 
25
    sys.stderr.write("usage: %s <git-dir>\n" % os.path.basename(sys.argv[0]))
26
26
    sys.exit(1)
27
27
 
28
28
sys.exit(serve_command(ReceivePackHandler))