blob: b5aeb5b33a3a6aeb4554d40377e3e925e2944e94 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/local/bin/python3.8
# -*- coding: utf-8 -*-
import re
import sys
from oslo_messaging.notify.notifier import _send_notification
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(_send_notification())
|