diff options
author | Clark Williams <williams@redhat.com> | 2010-07-27 14:42:01 -0500 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2010-07-27 14:42:01 -0500 |
commit | b3b1ede4f16aa7c20cac8b91f14749a0850a5e29 (patch) | |
tree | 25cbf2f7c9c837e91bd2f89b2f7a2b0e92971528 /py/mock/backend.py | |
parent | 5b6d32a3c920c4b8f494838361f886811af6d785 (diff) | |
download | mock-b3b1ede4f16aa7c20cac8b91f14749a0850a5e29.tar.gz mock-b3b1ede4f16aa7c20cac8b91f14749a0850a5e29.tar.xz mock-b3b1ede4f16aa7c20cac8b91f14749a0850a5e29.zip |
fixed indentation typo in py/mock/backend.py
Signed-off-by: Clark Williams <williams@redhat.com>
Diffstat (limited to 'py/mock/backend.py')
-rw-r--r-- | py/mock/backend.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/mock/backend.py b/py/mock/backend.py index e35c6c7..7aac040 100644 --- a/py/mock/backend.py +++ b/py/mock/backend.py @@ -551,9 +551,9 @@ class Root(object): shutil.copytree(sources, self.makeChrootPath(self.builddir, "SOURCES")) else: shutil.copy(sources, self.makeChrootPath(self.builddir, "SOURCES")) - - spec = self.makeChrootPath(self.builddir, "SPECS", os.path.basename(spec)) - chrootspec = spec.replace(self.makeChrootPath(), '') # get rid of rootdir prefix + + spec = self.makeChrootPath(self.builddir, "SPECS", os.path.basename(spec)) + chrootspec = spec.replace(self.makeChrootPath(), '') # get rid of rootdir prefix spec = self.makeChrootPath(self.builddir, "SPECS", os.path.basename(spec)) chrootspec = spec.replace(self.makeChrootPath(), '') # get rid of rootdir prefix |