do not fail validation on empty object_id
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
a8e9b7feed
commit
8f75a9133f
1 changed files with 8 additions and 6 deletions
|
@ -166,6 +166,8 @@ class CdistObject(object):
|
||||||
Remove leading and trailing slash (one only)
|
Remove leading and trailing slash (one only)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Allow empty object id for singletons
|
||||||
|
if self.object_id:
|
||||||
# Remove leading slash
|
# Remove leading slash
|
||||||
if self.object_id[0] == '/':
|
if self.object_id[0] == '/':
|
||||||
self.object_id = self.object_id[1:]
|
self.object_id = self.object_id[1:]
|
||||||
|
|
Loading…
Reference in a new issue