From 485443189738992201420ab3184ca356b82b41d1 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Mon, 21 Jan 2019 14:20:56 +0100 Subject: [PATCH] sleep time changed back to 0.05 --- pype/ftrack/actions/action_Apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/ftrack/actions/action_Apps.py b/pype/ftrack/actions/action_Apps.py index dabba18a04..aebe745b6a 100644 --- a/pype/ftrack/actions/action_Apps.py +++ b/pype/ftrack/actions/action_Apps.py @@ -59,6 +59,6 @@ def register(session): for app in apps: try: registerApp(app, session) - time.sleep(0.03) + time.sleep(0.05) except Exception as e: log.warning("'{0}' - not proper App ({1})".format(app['name'], e))