We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121c3f8 commit fd3d3d1Copy full SHA for fd3d3d1
configuration/configuration.py
@@ -1,6 +1,5 @@
1
import os
2
import re
3
-import socket
4
5
# For reference see http://netbox.readthedocs.io/en/latest/configuration/mandatory-settings/
6
# Based on https://github.com/netbox-community/netbox/blob/develop/netbox/netbox/configuration.example.py
startup_scripts/__main__.py
@@ -9,7 +9,7 @@
9
def filename(f):
10
return f.name
11
12
-with scandir(dirname(abspath(__file__))) as it:
+with scandir(this_dir) as it:
13
for f in sorted(it, key = filename):
14
if not f.is_file():
15
continue
0 commit comments