1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-27 15:06:15 +01:00

remove unneeded import statement

This commit is contained in:
Dr. Peter Poeml 2007-07-05 15:12:30 +00:00
parent e6ae7ddde3
commit 3b78077453

View File

@ -1232,9 +1232,6 @@ def link_pac(src_project, src_package, dst_project, dst_package):
- "dst" is the "link" package that we are creating here
"""
import tempfile
src_meta = show_package_meta(conf.config['apiurl'], src_project, src_package)
# replace package name and username
@ -1300,7 +1297,7 @@ def copy_pac(src_apiurl, src_project, src_package,
# copy one file after the other
print 'Copying files...'
tmpdir = tempfile.mkdtemp(prefix='osc_copypac', dir = '/tmp')
tmpdir = tempfile.mkdtemp(prefix='osc_copypac', dir='/tmp')
os.chdir(tmpdir)
for n in meta_get_filelist(src_apiurl, src_project, src_package):
print ' ', n