2
0
Эх сурвалжийг харах

Add missing argument

Fix not tested. Just applying change I noticed while browsing:

    https://lgtm.com/projects/g/dulwich/dulwich/alerts/?mode=list
Steven Myint 6 жил өмнө
parent
commit
a6c3b5d2ac
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      dulwich/porcelain.py

+ 1 - 1
dulwich/porcelain.py

@@ -609,7 +609,7 @@ def show_tag(repo, tag, decode, outstream=sys.stdout):
     :param outstream: Stream to write to
     """
     print_tag(tag, decode, outstream)
-    show_object(repo, repo[tag.object[1]], outstream)
+    show_object(repo, repo[tag.object[1]], decode, outstream)
 
 
 def show_object(repo, obj, decode, outstream):