Преглед изворни кода

bitwarden: fix message string containing percents

Previously, this would barf if any of the strings in the hash table
contained percent formating symbols.
Sean Farley пре 8 година
родитељ
комит
3bcbad26b9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      bitwarden.el

+ 1 - 1
bitwarden.el

@@ -257,7 +257,7 @@ non-interactively)."
     (cond
      ((eq err 0)
       (if print-message
-          (message pass)
+          (message "%s" pass)
         pass))
      (t
       (bitwarden--message "%s" pass print-message)