aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libbe/comment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/comment.py b/libbe/comment.py
index 19c556f..41bc7e6 100644
--- a/libbe/comment.py
+++ b/libbe/comment.py
@@ -128,7 +128,7 @@ def loadComments(bug, load_full=False):
if bug.sync_with_disk == False:
raise DiskAccessRequired("load comments")
path = bug.get_path("comments")
- if not os.path.isdir(path):
+ if not os.path.exists(path):
return Comment(bug, uuid=INVALID_UUID)
comments = []
for uuid in os.listdir(path):