diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-15 17:16:25 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-15 17:16:25 +0100 |
commit | 5d9526783ad8432c7d6dfe18c0e9f2b37950b470 (patch) | |
tree | 0562bf41b675f2546cb473bb583a78865d73928b /bsie/apps/info.py | |
parent | 8e6d27ea75d2c8d68f6dd8b3d529aaa278f291cc (diff) | |
download | bsie-5d9526783ad8432c7d6dfe18c0e9f2b37950b470.tar.gz bsie-5d9526783ad8432c7d6dfe18c0e9f2b37950b470.tar.bz2 bsie-5d9526783ad8432c7d6dfe18c0e9f2b37950b470.zip |
Pipeline.prefix as Namespace instead of URI
Diffstat (limited to 'bsie/apps/info.py')
-rw-r--r-- | bsie/apps/info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bsie/apps/info.py b/bsie/apps/info.py index 8cc6dca..eaf1f71 100644 --- a/bsie/apps/info.py +++ b/bsie/apps/info.py @@ -12,7 +12,7 @@ import typing # bsie imports from bsie.base import errors from bsie.tools import builder -from bsie.utils.bsfs import URI +from bsie.utils import bsfs # exports __all__: typing.Sequence[str] = ( @@ -48,7 +48,7 @@ def main(argv): ]) # pipeline builder pbuild = builder.PipelineBuilder( - URI('http://example.com/me/file#'), # not actually used + bsfs.Namespace('http://example.com/me/'), # not actually used rbuild, ebuild, ) |