diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-23 10:41:45 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-06-23 10:41:45 -0400 |
commit | a75b0440ff434aad00d932644a2ae49685fbb79b (patch) | |
tree | c2e3ca065e5121b5f89e80ebd52c094cc7d18a12 /cbc | |
parent | 9d6c4cd01740ee13a53abe2dd2fd2a41a605a7a6 (diff) | |
download | cbc-a75b0440ff434aad00d932644a2ae49685fbb79b.tar.gz |
Remove debug sleep statement
Diffstat (limited to 'cbc')
-rwxr-xr-x | cbc/environment.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cbc/environment.py b/cbc/environment.py index 34d77b2..ef8f7cf 100755 --- a/cbc/environment.py +++ b/cbc/environment.py @@ -24,7 +24,6 @@ class Environment(object): temp_prefix = os.path.basename(os.path.splitext(__name__)[0])
tempdir = TemporaryDirectory(prefix=temp_prefix, dir=self.cbchome)
self.working_dir = tempdir.name
- time.sleep(10)
self.config['meta'] = self.join('meta.yaml')
self.config['build'] = self.join('build.sh')
self.config['build_windows'] = self.join('bld.bat')
|