Skip to content

Commit

Permalink
bump version. check for null project in eq
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Dec 2, 2014
1 parent 5c0d753 commit 4715cb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/roam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NUM_VERSION = (2, 3, 0)
NUM_VERSION = (2, 3, 1)

import sip
import os
Expand Down
2 changes: 2 additions & 0 deletions src/roam/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,5 +682,7 @@ def hascapturelayers(self):
return False

def __eq__(self, other):
if not other:
return False
return self.basefolder == other.basefolder

0 comments on commit 4715cb6

Please sign in to comment.