From 9c8499101fe6310781e3d83aa98a12d4c1903685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sun, 4 Feb 2018 21:28:58 +0100 Subject: [PATCH] /tmp -> /var/tmp due to archlinux tmpfs --- robot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot.py b/robot.py index 3c522bf..261b762 100755 --- a/robot.py +++ b/robot.py @@ -14,7 +14,7 @@ from telegram import MessageEntity from telegram.ext import Updater, CommandHandler, MessageHandler, Filters DIR = os.path.dirname(os.path.realpath(__file__)) -TMP_DIR = '/tmp' +TMP_DIR = '/var/tmp' OUT_DIR = DIR + '/out' logging.basicConfig(level=logging.INFO,