mirror of
https://github.com/peridotbuild/pv2.git
synced 2024-11-21 20:51:26 +00:00
importer: make lack of meta message more informative
This commit is contained in:
parent
32642b1efd
commit
d9e2f2b370
@ -780,12 +780,13 @@ class GitImport(Import):
|
|||||||
metafile_to_use = sources_file
|
metafile_to_use = sources_file
|
||||||
else:
|
else:
|
||||||
#raise err.GenericError('sources or metadata file NOT found')
|
#raise err.GenericError('sources or metadata file NOT found')
|
||||||
print('WARNING: There was no sources or metadata found. Making blank file.')
|
# There isn't a reason to make a blank file right now.
|
||||||
|
print('WARNING: There was no sources or metadata found.')
|
||||||
with open(metadata_file, 'w+') as metadata_handle:
|
with open(metadata_file, 'w+') as metadata_handle:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if not metafile_to_use:
|
if not metafile_to_use:
|
||||||
print('There was no metadata file found. Skipping.')
|
print('Source: There was no metadata file found. Skipping import attempt.')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
sources_dict = self.parse_metadata_file(metafile_to_use)
|
sources_dict = self.parse_metadata_file(metafile_to_use)
|
||||||
|
Loading…
Reference in New Issue
Block a user