Skip to content

Commit

Permalink
Release 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Sep 16, 2018
1 parent aa9b7fd commit b8bdd8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

3.4.3 (2018-09-16)
------------------

Bugfixes
^^^^^^^^

* Fix OSError with arguments containing ``::`` on Windows (#641).

3.4.2 (2018-08-20)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pytest_django/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def transactional_db(request, django_db_setup, django_db_blocker):
``transactional_db``, ``django_db_reset_sequences``.
"""
if 'django_db_reset_sequences' in request.funcargnames:
request.getfuncargvalue('django_db_reset_sequences')
request.getfixturevalue('django_db_reset_sequences')
_django_db_fixture_helper(request, django_db_blocker,
transactional=True)

Expand Down

0 comments on commit b8bdd8e

Please sign in to comment.