summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-03-16 20:23:16 +0000
committerErik Troan <ewt@redhat.com>2001-03-16 20:23:16 +0000
commite10feebeb5a37972d45c07c109569de9691cde2f (patch)
treef0ecdd77b5338f565f8bc6714294541eb56fe6af /text.py
parent4171a1fd4368ef6755360f3f13e367b929d344c1 (diff)
downloadanaconda-e10feebeb5a37972d45c07c109569de9691cde2f.tar.gz
anaconda-e10feebeb5a37972d45c07c109569de9691cde2f.tar.xz
anaconda-e10feebeb5a37972d45c07c109569de9691cde2f.zip
fix the dir stuff
Diffstat (limited to 'text.py')
-rw-r--r--text.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/text.py b/text.py
index 9f1de50f0..4aa12814d 100644
--- a/text.py
+++ b/text.py
@@ -1107,12 +1107,12 @@ class InstallInterface:
newArgs = ()
for n in args:
if n == "dir":
- newArgs = newArgs + (dir,)
- else:
- newArgs = args + (n,)
+ n = dir
+
+ newArgs = newArgs + (n,)
args = newArgs
- rc = apply (step[1](), step[2])
+ rc = apply (step[1](), args)
if rc == INSTALL_BACK:
dir = -1