Browse Source

Address lint concern

pull/947/head
Hamish Coleman 3 years ago
parent
commit
bcb3c223d9
  1. 2
      scripts/n2n-httpd

2
scripts/n2n-httpd

@ -39,7 +39,7 @@ def import_filename(modulename, filename):
try: try:
loader.exec_module(module) loader.exec_module(module)
except FileNotFoundError as e: except FileNotFoundError:
print("Script {} not found".format(pathname), file=sys.stderr) print("Script {} not found".format(pathname), file=sys.stderr)
sys.exit(1) sys.exit(1)
return module return module

Loading…
Cancel
Save