Browse Source

Actually run the web server when invoking 'dulwich web-daemon'.

Jelmer Vernooij 10 years ago
parent
commit
ad98c9d4ef
1 changed files with 2 additions and 2 deletions
  1. 2 2
      bin/dulwich

+ 2 - 2
bin/dulwich

@@ -291,8 +291,8 @@ def cmd_web_daemon(args):
     else:
         gitdir = '.'
     from dulwich import porcelain
-    porcelain.daemon(gitdir, address=options.listen_address,
-                     port=options.port)
+    porcelain.web_daemon(gitdir, address=options.listen_address,
+                         port=options.port)
 
 
 def cmd_receive_pack(args):