Преглед изворни кода

Fixed out-of-scope variable

Steve Kamerman пре 7 година
родитељ
комит
c417813df9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      test/conftest.py

+ 1 - 1
test/conftest.py

@@ -257,7 +257,7 @@ def get_nginx_conf_from_container(container):
     strm, stat = container.get_archive('/etc/nginx/conf.d/default.conf')
     with tarfile.open(fileobj=StringIO(strm.read())) as tf:
         conffile = tf.extractfile('default.conf')
-    return conffile.read()
+        return conffile.read()
 
 
 def docker_compose_up(compose_file='docker-compose.yml'):