Commit ac980de6 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] use getattr instead of directly using the attribute

parent 405cae2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -550,7 +550,7 @@ class IVAS_rend(Processing):
            cmd.append("-im")
            cmd.extend([str(f) for f in in_meta])

        if self.opts:
        if getattr(self, "opts", None):
            cmd.extend(self.opts)

        run(cmd, logger=logger)