Skip to content

Commit

Permalink
fix the python 3.6 datetime issue on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Nov 27, 2017
1 parent 1dbee43 commit 0cc3cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bat/__init__.py
@@ -1,3 +1,3 @@
__author__ = 'Brian Wylie'
__email__ = 'brian.wylie@kitware.com'
__version__ = '0.3.3'
__version__ = '0.3.4'
2 changes: 1 addition & 1 deletion bat/bro_log_reader.py
Expand Up @@ -56,7 +56,7 @@ def __init__(self, filepath, delimiter='\t', tail=False, strict=False):
'port': int,
'unknown': lambda x: x}
self.dash_mapper = {'bool': False, 'count': 0, 'int': 0, 'port': 0, 'double': 0.0,
'time': datetime.datetime.fromtimestamp(0), 'interval': datetime.timedelta(seconds=0),
'time': datetime.datetime.fromtimestamp(86400), 'interval': datetime.timedelta(seconds=0),
'string': '-', 'unknown:': '-'}

# Initialize the Parent Class
Expand Down

0 comments on commit 0cc3cf5

Please sign in to comment.