From 8201e2cbe45d1531565b7ed10a88e7d205f78b11 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 9 Mar 2024 15:23:09 +0100 Subject: [PATCH] add space for the hashtag --- bin/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/main.ml b/bin/main.ml index fed3180..8bfccb8 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -52,7 +52,7 @@ let rec check ctx = if ctx.debug then print_endline "Tweeting..."; let message = "This tweet is for the Twitter's CTO: don't suspend my account for inactivity." - ^ if ctx.hashtag then "#puskbot" else "" + ^ if ctx.hashtag then " #puskbot" else "" in (* Tweet *) tweet ctx message;