1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 13:11:28 +00:00

Fix a typo in Zenmap setup: sys.prefix, not self.prefix

This commit is contained in:
dmiller
2014-11-13 13:24:39 +00:00
parent f0bfd5363c
commit ce340ba67b

View File

@@ -235,7 +235,7 @@ class my_install(install):
# install.finalize_options when sys.prefix is "/usr/local" (our
# default). Because we need the unchanged value later, remember it
# here.
self.saved_prefix = self.prefix
self.saved_prefix = sys.prefix
install.finalize_options(self)
def run(self):