lists.arthurdejong.org
RSS feed

python-pskc branch master updated. 0.3-6-g0ff4154

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-pskc branch master updated. 0.3-6-g0ff4154



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-pskc".

The branch, master has been updated
       via  0ff41549a8a316e5577a5cd01f0bcc679943910e (commit)
       via  3473903c36f0bcc5e18ad1a474f909f8b7c0050c (commit)
      from  a82a60b2bfbb27fe7f7d9cd45f8d394ee1dde3d2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://arthurdejong.org/git/python-pskc/commit/?id=0ff41549a8a316e5577a5cd01f0bcc679943910e

commit 0ff41549a8a316e5577a5cd01f0bcc679943910e
Author: Mathias Laurin <Mathias.Laurin+github.com@gmail.com>
Date:   Tue Dec 1 10:09:45 2015 +0100

    Fix typo in the documentation

diff --git a/docs/encryption.rst b/docs/encryption.rst
index 8b0ed2f..768a3f4 100644
--- a/docs/encryption.rst
+++ b/docs/encryption.rst
@@ -11,7 +11,7 @@ Embedded PSKC encryption is handled inside the 
:class:`Encryption` class that
 defines encryption key or means of deriving keys. It is accessed from the
 :attr:`~pskc.PSKC.encryption` attribute of a :class:`~pskc.PSKC` instance::
 
-   >>> rom binascii import a2b_hex
+   >>> from binascii import a2b_hex
    >>> from pskc import PSKC
    >>> pskc = PSKC('somefile.pskcxml')
    >>> pskc.encryption.key = a2b_hex('12345678901234567890123456789012')

http://arthurdejong.org/git/python-pskc/commit/?id=3473903c36f0bcc5e18ad1a474f909f8b7c0050c

commit 3473903c36f0bcc5e18ad1a474f909f8b7c0050c
Author: Mathias Laurin <Mathias.Laurin+github.com@gmail.com>
Date:   Tue Dec 1 09:40:21 2015 +0100

    Support Python 3

diff --git a/pskc2csv.py b/pskc2csv.py
index 6276369..7092f1e 100755
--- a/pskc2csv.py
+++ b/pskc2csv.py
@@ -20,6 +20,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 # 02110-1301 USA
 
+from __future__ import print_function
 import argparse
 import csv
 import operator
@@ -53,7 +54,7 @@ class VersionAction(argparse.Action):
             help=help)
 
     def __call__(self, parser, namespace, values, option_string=None):
-        print version_string
+        print(version_string)
         parser.exit()
 
 epilog = '''

-----------------------------------------------------------------------

Summary of changes:
 docs/encryption.rst | 2 +-
 pskc2csv.py         | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
python-pskc
-- 
To unsubscribe send an email to
python-pskc-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/python-pskc-commits/