Browse Source

Fix imports.

Jelmer Vernooij 15 years ago
parent
commit
b88788929a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      bin/dul-daemon
  2. 1 1
      bin/dul-web

+ 1 - 1
bin/dul-daemon

@@ -19,7 +19,7 @@
 
 
 import sys
 import sys
 from dulwich.repo import Repo
 from dulwich.repo import Repo
-from dulwich.server import DictBackend, GitBackendRepo, TCPGitServer
+from dulwich.server import DictBackend, TCPGitServer
 
 
 if __name__ == "__main__":
 if __name__ == "__main__":
     if len(sys.argv) > 1:
     if len(sys.argv) > 1:

+ 1 - 1
bin/dul-web

@@ -20,7 +20,7 @@
 import os
 import os
 import sys
 import sys
 from dulwich.repo import Repo
 from dulwich.repo import Repo
-from dulwich.server import GitBackendRepo, DictBackend
+from dulwich.server import DictBackend
 from dulwich.web import HTTPGitApplication
 from dulwich.web import HTTPGitApplication
 from wsgiref.simple_server import make_server
 from wsgiref.simple_server import make_server