# HG changeset patch
# User Peter Gervai <grin@grin.hu>
# Date 1674506383 -3600
# Node ID ab66343893186c11015824ea9ded5a2ffcc474a0
# Parent  3b714bbb13471d7793a2052b9d993babf7e24b63
BotSecrets.pm-sample: add some comments to help to see which variable is what

diff -r 3b714bbb1347 -r ab6634389318 delinker_fixer/BotSecrets.pm-sample
--- a/delinker_fixer/BotSecrets.pm-sample	Mon Jan 23 21:37:02 2023 +0100
+++ b/delinker_fixer/BotSecrets.pm-sample	Mon Jan 23 21:39:43 2023 +0100
@@ -7,7 +7,10 @@
 our @ISA    = qw/ Exporter /;
 our @EXPORT = qw/ $db_user $db_pw $bu $bp /;
 
+# user/password for the toolserver db
 our ($db_user, $db_pw) = ("s5****", "***");
-#my ($bu,$bp) = ('****', '****' );
+
+# user/password for the user (or other bot) making the changes
 our ($bu,$bp) = ('****', '****' );
+
 1;