Skip to content

Commit

Permalink
add comment back to first line in log2csv, bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
natronics committed May 20, 2014
1 parent 2ec0fed commit c216305
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion psas_packet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '0.1.10'
__version__ = '0.1.11'
2 changes: 1 addition & 1 deletion scripts/log2csv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def log2csv(f_in):

if key not in files:
files[key] = open(str(messages.printable(key))+'.csv', 'w')
files[key].write("[0]SEQN, [1]Timestamp")
files[key].write("# [0]SEQN, [1]Timestamp")
for i, member in enumerate(PSAS[key].member_list):
files[key].write(", [{0}]{1}".format(i+2, member['key']))
files[key].write('\n')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='psas_packet',
version='0.1.10',
version='0.1.11',
description='serializer for PSAS data standards',
long_description=open('README.rst').read(),
author='Nathan Bergey',
Expand Down

0 comments on commit c216305

Please sign in to comment.