浏览代码

Fix imports.

Jelmer Vernooij 15 年之前
父节点
当前提交
b88788929a
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      bin/dul-daemon
  2. 1 1
      bin/dul-web

+ 1 - 1
bin/dul-daemon

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

+ 1 - 1
bin/dul-web

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