File: 0003-Define-kwarg_name-in-pipeline_settings-class.patch

package info (click to toggle)
django-pipeline 1.6.8-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 736 kB
  • ctags: 565
  • sloc: python: 2,458; makefile: 119
file content (19 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Subject: Define kwarg_name in pipeline_settings class
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Bug-Debian: https://bugs.debian.org/828653
Date: Fri, 5 Aug 2016 11:30:38 +0000
Last-Update: 2016-08-05

diff --git a/tests/utils.py b/tests/utils.py
index bf1c7ca..c3501dc 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -16,6 +16,7 @@ def _(path):
 
 
 class pipeline_settings(override_settings):
+    kwarg_name = None
     def __init__(self, **kwargs):
         self.options = {'PIPELINE': kwargs}