Changeset - e0b1c45eb117
[Not reviewed]
default
0 1 0
Lars Kruse - 8 years ago 2017-08-25 14:31:29
devel@sumpfralle.de
tests: add missing tempfile import

There was already a broken reference to the tempfile module.
1 file changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
kallithea/tests/scripts/manual_test_concurrency.py
Show inline comments
 
@@ -30,9 +30,8 @@ import os
 
import sys
 
import shutil
 
import logging
 
import tempfile
 
from os.path import dirname
 

	
 
from tempfile import _RandomNameSequence
 
from subprocess import Popen, PIPE
 

	
 
from paste.deploy import appconfig
 
@@ -203,7 +202,7 @@ if __name__ == '__main__':
 
            backend = 'hg'
 

	
 
        if METHOD == 'pull':
 
            seq = _RandomNameSequence().next()
 
            seq = tempfile._RandomNameSequence().next()
 
            test_clone_with_credentials(repo=sys.argv[1], method='clone',
 
                                        backend=backend)
 
        s = time.time()
0 comments (0 inline, 0 general)