소스 검색

Fix conflict to work around bug in bzr..

Jelmer Vernooij 16 년 전
부모
커밋
ee2eae17f6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -37,7 +37,7 @@ class Tag(object):
 
     def __init__(self, name, ref):
         self.name = name
-        self.ref = ref
+        self.commit = Commit()
 
 
 class Repo(object):