aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2017-12-25 18:41:21 -0500
committerAnthony G. Basile <blueness@gentoo.org>2017-12-25 18:41:21 -0500
commiteb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3 (patch)
tree2cdb4d824511b32492da4c08b7e3f69628688056
parentgrs/__init__.py: import Netboot class (diff)
downloadgrss-eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3.tar.gz
grss-eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3.tar.bz2
grss-eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3.zip
grs/Interpret.py: fix typo
-rw-r--r--grs/Interpret.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Interpret.py b/grs/Interpret.py
index d6fdad9..9baf41b 100644
--- a/grs/Interpret.py
+++ b/grs/Interpret.py
@@ -135,7 +135,7 @@ class Interpret(Daemon):
_ke = Kernel(libdir, portage_configroot, kernelroot, package, logfile)
_bi = TarIt(name, portage_configroot, logfile)
_io = ISOIt(name, libdir, tmpdir, portage_configroot, logfile)
- _nb - Netboot(name, libdir, tmpdir, portage_configroot, kernelroot, logfile)
+ _nb = Netboot(name, libdir, tmpdir, portage_configroot, kernelroot, logfile)
# Just in case /var/tmp/grs doesn't already exist.
os.makedirs(tmpdir, mode=0o755, exist_ok=True)