summaryrefslogtreecommitdiffstats
path: root/users.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2010-02-15 13:27:45 -0500
committerChris Lumens <clumens@redhat.com>2010-02-15 13:27:45 -0500
commit6a973dbf52102f1eb960d6b59ca9305d44559f5e (patch)
treefd0b1235c54718dac98546ebeb1d45fb6befb984 /users.py
parentc733e6d8a8cfdf34b18821b37b1264be81b5fc2e (diff)
downloadanaconda-6a973dbf52102f1eb960d6b59ca9305d44559f5e.tar.gz
anaconda-6a973dbf52102f1eb960d6b59ca9305d44559f5e.tar.xz
anaconda-6a973dbf52102f1eb960d6b59ca9305d44559f5e.zip
cryptPassword is not part of any class (#565611).
Diffstat (limited to 'users.py')
-rw-r--r--users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/users.py b/users.py
index 0f7c19aa4..67d15b241 100644
--- a/users.py
+++ b/users.py
@@ -299,7 +299,7 @@ class Users:
if self.rootPassword["isCrypted"]:
args = " --iscrypted %s" % self.rootPassword["password"]
else:
- args = " --iscrypted %s" % self.cryptPassword(self.rootPassword["password"], algo=self.getPassAlgo())
+ args = " --iscrypted %s" % cryptPassword(self.rootPassword["password"], algo=self.getPassAlgo())
if self.rootPassword["lock"]:
args += " --lock"