Skip to content

Commit eec60be

Browse files
committed
bug fix for agenda
1 parent 77da115 commit eec60be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftplugin/orgmode/liborgmode/headings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def __lt__(self, other):
127127
return True
128128
elif not self.active_date and other.active_date:
129129
return False
130-
elif not self.active_date and not other.active:
130+
elif not self.active_date and not other.active_date:
131131
return False
132132

133133
def __le__(self, other):

0 commit comments

Comments
 (0)