diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-01-11 18:51:58 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-01-11 18:51:58 +0000 |
commit | 15dfac1a9d2cfc7e7b8741efc85bc41c7da85741 (patch) | |
tree | 51e2b2186ca68fda0f4e4c93b8bafff9c640f52d | |
parent | b09c0964865c58f9e86bf13173f5878b6c922375 (diff) | |
parent | 3af65ff57416cee8576f865f6006fa407845ef2f (diff) |
Merge "Fix error path for tools/process-templates.py"
-rw-r--r-- | requirements.txt | 1 | ||||
-rw-r--r-- | test-requirements.txt | 2 | ||||
-rwxr-xr-x | tools/process-templates.py | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 3f157628..555b240d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ # process, which may cause wedges in the gate later. pbr>=1.8 # Apache-2.0 Jinja2>=2.8 # BSD License (3 clause) +six>=1.9.0 # MIT diff --git a/test-requirements.txt b/test-requirements.txt index 6489b16c..faf4893f 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,3 +2,5 @@ # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. PyYAML>=3.10.0 # MIT +Jinja2>=2.8 # BSD License (3 clause) +six>=1.9.0 # MIT diff --git a/tools/process-templates.py b/tools/process-templates.py index a15b00e2..9a06812b 100755 --- a/tools/process-templates.py +++ b/tools/process-templates.py @@ -14,6 +14,7 @@ import argparse import jinja2 import os +import six import sys import yaml |