28
28
extract_reuse_info ,
29
29
merge_copyright_lines ,
30
30
)
31
- from .comment import (
31
+ from .comment import CommentStyle , EmptyCommentStyle , PythonCommentStyle
32
+ from .exceptions import (
32
33
CommentCreateError ,
33
34
CommentParseError ,
34
- CommentStyle ,
35
- EmptyCommentStyle ,
36
- PythonCommentStyle ,
35
+ MissingReuseInfoError ,
37
36
)
38
37
from .i18n import _
39
38
@@ -53,10 +52,6 @@ class _TextSections(NamedTuple):
53
52
after : str
54
53
55
54
56
- class MissingReuseInfo (Exception ):
57
- """Some REUSE information is missing from the result."""
58
-
59
-
60
55
def _create_new_header (
61
56
reuse_info : ReuseInfo ,
62
57
template : Optional [Template ] = None ,
@@ -68,7 +63,8 @@ def _create_new_header(
68
63
69
64
Raises:
70
65
CommentCreateError: if a comment could not be created.
71
- MissingReuseInfo: if the generated comment is missing SPDX information.
66
+ MissingReuseInfoError: if the generated comment is missing SPDX
67
+ information.
72
68
"""
73
69
if template is None :
74
70
template = DEFAULT_TEMPLATE
@@ -101,7 +97,7 @@ def _create_new_header(
101
97
)
102
98
)
103
99
_LOGGER .debug (result )
104
- raise MissingReuseInfo ()
100
+ raise MissingReuseInfoError ()
105
101
106
102
return result
107
103
@@ -125,7 +121,8 @@ def create_header(
125
121
126
122
Raises:
127
123
CommentCreateError: if a comment could not be created.
128
- MissingReuseInfo: if the generated comment is missing SPDX information.
124
+ MissingReuseInfoError: if the generated comment is missing SPDX
125
+ information.
129
126
"""
130
127
if template is None :
131
128
template = DEFAULT_TEMPLATE
@@ -186,7 +183,7 @@ def _find_first_spdx_comment(
186
183
preceding the comment, the comment itself, and everything following it.
187
184
188
185
Raises:
189
- MissingReuseInfo : if no REUSE info can be found in any comment
186
+ MissingReuseInfoError : if no REUSE info can be found in any comment.
190
187
"""
191
188
if style is None :
192
189
style = PythonCommentStyle
@@ -203,7 +200,7 @@ def _find_first_spdx_comment(
203
200
text [:index ], comment + "\n " , text [index + len (comment ) + 1 :]
204
201
)
205
202
206
- raise MissingReuseInfo ()
203
+ raise MissingReuseInfoError ()
207
204
208
205
209
206
def _extract_shebang (prefix : str , text : str ) -> tuple [str , str ]:
@@ -248,14 +245,15 @@ def find_and_replace_header(
248
245
249
246
Raises:
250
247
CommentCreateError: if a comment could not be created.
251
- MissingReuseInfo: if the generated comment is missing SPDX information.
248
+ MissingReuseInfoError: if the generated comment is missing SPDX
249
+ information.
252
250
"""
253
251
if style is None :
254
252
style = PythonCommentStyle
255
253
256
254
try :
257
255
before , header , after = _find_first_spdx_comment (text , style = style )
258
- except MissingReuseInfo :
256
+ except MissingReuseInfoError :
259
257
before , header , after = "" , "" , text
260
258
261
259
# Workaround. EmptyCommentStyle should always be completely replaced.
0 commit comments