(package)
| 672 | return True |
| 673 | |
| 674 | def upload_nodata(package): |
| 675 | print('Uploading no-data status..') |
| 676 | try: |
| 677 | try_retry(__upload, fargs=('write_nodata\n' + package, '', 'No-data status'), max_tries=3, sleep_duration=30, sleep_factor=1) |
| 678 | except Exception as e: |
| 679 | print('No-data upload failed ({})!'.format(e)) |
| 680 | return False |
| 681 | |
| 682 | return True |
| 683 | |
| 684 | |
| 685 | class LibraryIncludes: |