We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d476925 commit 841f289Copy full SHA for 841f289
1 file changed
ietf/submit/utils.py
@@ -126,14 +126,15 @@ def validate_submission_name(name):
126
if '.' in name:
127
msg += " Did you include a filename extension in the name by mistake?"
128
return msg
129
- return None
130
131
components = name.split('-')
132
if '' in components:
133
return "Name contains adjacent dashes or the name ends with a dash."
134
if len(components) < 3:
135
return "Name has less than three dash-delimited components in the name."
136
+ return None
137
+
138
def validate_submission_rev(name, rev):
139
if not rev:
140
return 'Revision not found'
0 commit comments