Skip to content

Commit

Permalink
Merge pull request #34 from yhoogstrate/dev
Browse files Browse the repository at this point in the history
Suppresses a warning for certain installations
  • Loading branch information
yhoogstrate committed Apr 7, 2016
2 parents 8b9115f + 45d2127 commit 17a7fb0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2016-04-07 Youri Hoogstrate

* Version 3.0.2: Suppresses a warning that occurs in some installations

2016-04-05 Youri Hoogstrate

* Version 3.0.1: Added a simple break statement ensures that the output is
Expand Down
2 changes: 1 addition & 1 deletion fuma/ComparisonTriangle.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def export_list_header(self):

def export_list_chunked(self,fh,chunk_fusions):
for fusion in chunk_fusions:
if fusion != None:
if fusion not in [None, False]:# False means marked as duplicate earlier on
self.export_list_fg(fusion,fh)

if not isinstance(fusion, Fusion):
Expand Down
2 changes: 1 addition & 1 deletion fuma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<http://epydoc.sourceforge.net/manual-fields.html#fields-synonyms>
"""

__version_info__ = ('3', '0', '1')
__version_info__ = ('3', '0', '2')
__version__ = '.'.join(__version_info__) if (len(__version_info__) == 3) else '.'.join(__version_info__[0:3])+"-"+__version_info__[3]
__author__ = 'Youri Hoogstrate'
__homepage__ = 'https://github.com/yhoogstrate/fuma'
Expand Down

0 comments on commit 17a7fb0

Please sign in to comment.