diff options
| author | Matthieu Pignolet <matthieu@matthieu-dev.xyz> | 2025-01-18 19:43:24 +0400 |
|---|---|---|
| committer | Matthieu Pignolet <matthieu@matthieu-dev.xyz> | 2025-01-18 19:43:24 +0400 |
| commit | 4bcee1cde2e98d0c61dca7e376a62c9831cb10e7 (patch) | |
| tree | a737ace4f1fa6283d705c998a22324ded67a3c8a | |
| parent | 8c0e3198ac47533d608f8d580b83db1c218a4e70 (diff) | |
fix missing shebangv0.0.2
| -rwxr-xr-x | frr-evpn-route-watcher/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frr-evpn-route-watcher/task.py b/frr-evpn-route-watcher/task.py index dfd981e..4b497ea 100755 --- a/frr-evpn-route-watcher/task.py +++ b/frr-evpn-route-watcher/task.py @@ -1,8 +1,8 @@ +#!/usr/bin/env python3 import json import ipaddress import subprocess import re -import time def get_frr_vrfs(): """Gets the list of vrf VNIs configured in FRR""" |
