diff --git a/watson/watson.py b/watson/watson.py index 7ab7da12..76dba6b5 100644 --- a/watson/watson.py +++ b/watson/watson.py @@ -316,7 +316,10 @@ def projects(self): """ Return the list of all the existing projects, sorted by name. """ - return sorted(set(self.frames['project'])) + projects = set(self.frames['project']) + if 'default_tags' in self.config.sections(): + projects |= set(p[0] for p in self.config.items('default_tags')) + return sorted(projects) @property def tags(self):