Repository: trafficserver-qa
Updated Branches:
  refs/heads/master 508bd475e -> e9e451a1b


Fix typo


Project: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/commit/4b71a0ca
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/tree/4b71a0ca
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/diff/4b71a0ca

Branch: refs/heads/master
Commit: 4b71a0cab92e1483895b08b1c2208fac68613c7f
Parents: 508bd47
Author: Thomas Jackson <[email protected]>
Authored: Thu Oct 22 17:36:50 2015 -0700
Committer: Thomas Jackson <[email protected]>
Committed: Thu Oct 22 17:36:50 2015 -0700

----------------------------------------------------------------------
 tsqa/environment.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver-qa/blob/4b71a0ca/tsqa/environment.py
----------------------------------------------------------------------
diff --git a/tsqa/environment.py b/tsqa/environment.py
index 271c62a..9e81186 100644
--- a/tsqa/environment.py
+++ b/tsqa/environment.py
@@ -333,8 +333,10 @@ class Environment(object):
         """
         # First, make the prefix directory.
         if self.layout is None:
-            self.layout = 
Layout(tempfile.mkdtemp(prefix=os.environ.get('TSQA_LAYOUT_PREFIX', 
'tsqa.env.'),
-                                                  
dir=os.environ.get('TSQA_LAYOUR_DIR', None)))
+            self.layout = Layout(tempfile.mkdtemp(
+                prefix=os.environ.get('TSQA_LAYOUT_PREFIX', 'tsqa.env.'),
+                dir=os.environ.get('TSQA_LAYOUT_DIR', None)),
+            )
         else:
             os.makedirs(self.layout.prefix)
         os.chmod(self.layout.prefix, 0777)  # Make the tmp dir readable by all

Reply via email to