[yt-svn] commit/yt: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Thu Aug 6 09:12:25 PDT 2015


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/be3a03dce5df/
Changeset:   be3a03dce5df
Branch:      yt
User:        xarthisius
Date:        2015-08-05 16:11:45+00:00
Summary:     python3 fix for test_cookbook.py
Affected #:  1 file

diff -r fffa77d2fdc205b54fb87befaa50ade850f826d6 -r be3a03dce5df56a06d6eaf47ef8decf6f06a1179 doc/source/cookbook/tests/test_cookbook.py
--- a/doc/source/cookbook/tests/test_cookbook.py
+++ b/doc/source/cookbook/tests/test_cookbook.py
@@ -34,7 +34,7 @@
     try:
         subprocess.check_call(cmd)
         result = True
-    except subprocess.CalledProcessError, e:
+    except subprocess.CalledProcessError as e:
         print(("Stdout output:\n", e.output))
         result = False
     assert result


https://bitbucket.org/yt_analysis/yt/commits/9792ff5df129/
Changeset:   9792ff5df129
Branch:      yt
User:        ngoldbaum
Date:        2015-08-06 16:12:15+00:00
Summary:     Merged in xarthisius/yt (pull request #1677)

python3 fix for test_cookbook.py
Affected #:  1 file

diff -r 6648a426534a851be61dd12f996256c2ca2e99b9 -r 9792ff5df129bd26fc76ae33d6032091cc649ab6 doc/source/cookbook/tests/test_cookbook.py
--- a/doc/source/cookbook/tests/test_cookbook.py
+++ b/doc/source/cookbook/tests/test_cookbook.py
@@ -34,7 +34,7 @@
     try:
         subprocess.check_call(cmd)
         result = True
-    except subprocess.CalledProcessError, e:
+    except subprocess.CalledProcessError as e:
         print(("Stdout output:\n", e.output))
         result = False
     assert result

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list