This solved everything for me, removing the block tags. Of course you have to add the Libs first:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from instabot import InstaBot
bot = InstaBot(login="***", password="***",
like_per_day=0,
comments_per_day=0,
tag_list=['follow4follow', 'f4f', 'cute'],
max_like_for_one_tag=50,
follow_per_day=300,
follow_time=10*60*60,
unfollow_per_day=300,
unfollow_break_min=15,
unfollow_break_max=30,
log_mod=0)
bot.new_auto_mod()
Of course you can edit the values, remoing the two block tag lines solves it. You don't have to use the one above, just to show as an example on how it's done.