diff options
author | Signal Linden <signal@lindenlab.com> | 2022-10-11 15:10:04 -0700 |
---|---|---|
committer | Signal Linden <signal@lindenlab.com> | 2022-10-11 15:10:04 -0700 |
commit | 8d7cde22c31a59d0503230334b1d68e858364c9a (patch) | |
tree | 824362a5905f5545ab62346c5d56cb52fe73d952 /indra/newview | |
parent | 13ab3e3f0658a26ae8345a1b8916240bafae302b (diff) |
Replace llbase with llsd module
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 3327ecfb56..30b0d23a93 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -49,7 +49,7 @@ viewer_dir = os.path.dirname(__file__) # indra.util.llmanifest under their system Python! sys.path.insert(0, os.path.join(viewer_dir, os.pardir, "lib", "python")) from indra.util.llmanifest import LLManifest, main, path_ancestors, CHANNEL_VENDOR_BASE, RELEASE_CHANNEL, ManifestError, MissingError -from llbase import llsd +import llsd class ViewerManifest(LLManifest): def is_packaging_viewer(self): |