Skip to content

Commit b8bdd8e

Browse files
committed
Release 3.4.3
1 parent aa9b7fd commit b8bdd8e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

docs/changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
3.4.3 (2018-09-16)
5+
------------------
6+
7+
Bugfixes
8+
^^^^^^^^
9+
10+
* Fix OSError with arguments containing ``::`` on Windows (#641).
11+
412
3.4.2 (2018-08-20)
513
------------------
614

pytest_django/fixtures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def transactional_db(request, django_db_setup, django_db_blocker):
184184
``transactional_db``, ``django_db_reset_sequences``.
185185
"""
186186
if 'django_db_reset_sequences' in request.funcargnames:
187-
request.getfuncargvalue('django_db_reset_sequences')
187+
request.getfixturevalue('django_db_reset_sequences')
188188
_django_db_fixture_helper(request, django_db_blocker,
189189
transactional=True)
190190

0 commit comments

Comments
 (0)