Skip to content

Commit 5e97970

Browse files
committed
[Utils] Fix missing import in configuration.py
Fix missing sys import for Python scripts for third-party declaration Signed-off-by: Pierre-Yves Lapersonne <[email protected]>
1 parent 9467219 commit 5e97970

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/Orange-OpenSource/floss-toolbox/compare/2.19.0..dev)
99

10+
### Fixed
11+
12+
- [Utils] Fix missing import in configuration.py
13+
1014
## [2.19.0](https://github.com/Orange-OpenSource/floss-toolbox/compare/2.19.0..2.18.0) - 2024-04-03
1115

1216
### Added

toolbox/utils/third-party-generator/configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
# Authors: See CONTRIBUTORS.txt
1111
# Software description: A toolbox of scripts to help work of forges admins and open source referents
1212

13-
# Version.............: 3.0.0
13+
# Version.............: 3.0.1
1414
# Since...............: 12/03/2024
1515
# Description.........: Just to list managed licenses and share values between scripts
1616

17+
import sys
1718
sys.path.append('../_')
1819
from licenses import *
1920

0 commit comments

Comments
 (0)