From 86eddea996e8999dc352665fe763c59cd9b0fea5 Mon Sep 17 00:00:00 2001 From: Lucidiot Date: Wed, 10 Oct 2018 19:23:31 +0200 Subject: [PATCH] Make example scripts executable (#36) --- examples/irc/dicebot.py | 2 ++ examples/twitch/dicebot.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) mode change 100644 => 100755 examples/irc/dicebot.py mode change 100644 => 100755 examples/twitch/dicebot.py diff --git a/examples/irc/dicebot.py b/examples/irc/dicebot.py old mode 100644 new mode 100755 index 6ceb294..745f860 --- a/examples/irc/dicebot.py +++ b/examples/irc/dicebot.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from pinhook.bot import Bot ph = Bot( diff --git a/examples/twitch/dicebot.py b/examples/twitch/dicebot.py old mode 100644 new mode 100755 index 686a1bb..0347e84 --- a/examples/twitch/dicebot.py +++ b/examples/twitch/dicebot.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from pinhook.bot import TwitchBot bot = TwitchBot( @@ -5,4 +7,4 @@ bot = TwitchBot( channel='#dicechannel', token='supersecrettokenhere' ) -bot.start() \ No newline at end of file +bot.start()