diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-02-10 11:12:08 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-02-10 11:12:08 +0100 |
commit | 044a51f420e97dd424e57ba90e9ab089fc29c3b0 (patch) | |
tree | e7d1cf7870311e51f2601a8b2987dddc18740a68 | |
parent | 0068ed62900611c0ee0ee77f8d69ca86812fd6ed (diff) | |
download | gemato-044a51f420e97dd424e57ba90e9ab089fc29c3b0.tar.gz |
manifest: Remove unnecessary assertion preventing absolute paths
-rw-r--r-- | gemato/manifest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gemato/manifest.py b/gemato/manifest.py index d6a7ee7..3886d0d 100644 --- a/gemato/manifest.py +++ b/gemato/manifest.py @@ -63,7 +63,6 @@ class ManifestPathEntry(object): escape_seq_re = re.compile(r'\\(x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8})?') def __init__(self, path): - assert path[0] != '/' self.path = path @staticmethod |