Procházet zdrojové kódy

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 před 6 roky
rodič
revize
a6c3b5d2ac
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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):