summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2009-07-08 14:40:51 -0500
committerClark Williams <williams@redhat.com>2009-07-08 14:40:51 -0500
commit08f7f800ae03b0b873e89c56c64906ca1cac829d (patch)
tree99f4e5958ab0785c1e1cdc1b951807fb521590a8
parentcbe5e0fb94228bca7d1686160f3f43d77780ea95 (diff)
downloadmock-08f7f800ae03b0b873e89c56c64906ca1cac829d.tar.gz
mock-08f7f800ae03b0b873e89c56c64906ca1cac829d.tar.xz
mock-08f7f800ae03b0b873e89c56c64906ca1cac829d.zip
fixed stupid typo in last update
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--py/mock/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mock/backend.py b/py/mock/backend.py
index 04e1b1a..a38fb9c 100644
--- a/py/mock/backend.py
+++ b/py/mock/backend.py
@@ -331,7 +331,7 @@ class Root(object):
mountopt = 'gid=%d,mode=620' % grp.getgrnam('tty').gr_gid
if os.uname()[2] >= '2.6.29':
- mountopt +== ',newinstance'
+ mountopt += ',newinstance'
for devMntCmd in (
'mount -n -t devpts -o %s mock_chroot_devpts %s' % (mountopt, self.makeChrootPath('/dev/pts')),