2
0
Jelmer Vernooij 4 сар өмнө
parent
commit
3a051fc783
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      dulwich/cli.py

+ 1 - 1
dulwich/cli.py

@@ -729,7 +729,7 @@ class cmd_stash_list(Command):
         parser = optparse.OptionParser()
         options, args = parser.parse_args(args)
         for i, entry in porcelain.stash_list("."):
-            print(f"stash@{{{i}}}: {entry.message.rstrip('\n')}")
+            print("stash@{{{}}}: {}".format(i, entry.message.rstrip("\n")))
 
 
 class cmd_stash_push(Command):