From a25b57635f41c2cbdde4b376e4f542274aa49f94 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 30 Sep 2019 09:58:35 -0400 Subject: Fix create_tag default boolean --- python/function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/function.py b/python/function.py index 861cdcf0..114790ca 100644 --- a/python/function.py +++ b/python/function.py @@ -938,7 +938,7 @@ class Function(object): def create_auto_tag(self, type, data): return self.create_tag(type, data, False) - def create_tag(self, type, data, user=False): + def create_tag(self, type, data, user=True): """ ``create_tag`` creates a new Tag object but does not add it anywhere -- cgit v1.3.1