From 84ee9c7afb7aaf5fc72f3ea2058de512cd1a4f69 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 5 Jul 2016 23:22:03 +0100 Subject: Add missing return values in boolean functions. --- poezio/roster.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poezio/roster.py') diff --git a/poezio/roster.py b/poezio/roster.py index 15b3b01c..ac8012cb 100644 --- a/poezio/roster.py +++ b/poezio/roster.py @@ -238,16 +238,16 @@ class Roster(object): def export(self, path): """Export a list of bare jids to a given file""" if p.isfile(path): - return + return False try: f = open(path, 'w+', encoding='utf-8') f.writelines([str(i) + "\n" for i in self.contacts if self[i] and (self[i].subscription == "both" or self[i].ask)]) f.close() return True except IOError: - return + return False except OSError: - return + return False def exists(self, contact): if not contact: -- cgit v1.2.3