aboutsummaryrefslogtreecommitdiff
path: root/mesonintrospect.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonintrospect.py')
-rwxr-xr-xmesonintrospect.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonintrospect.py b/mesonintrospect.py
index 3a21c5e..5cc07bf 100755
--- a/mesonintrospect.py
+++ b/mesonintrospect.py
@@ -14,9 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from mesonbuild import mesonmain, mlog
+from mesonbuild import mesonmain
import sys
if __name__ == '__main__':
- mlog.warning('This executable is deprecated. Use "meson introspect" instead.')
+ print('Warning: This executable is deprecated. Use "meson introspect" instead.',
+ file=sys.stderr)
sys.exit(mesonmain.run(['introspect'] + sys.argv[1:]))