aboutsummaryrefslogtreecommitdiff
path: root/grs
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-11-11 18:57:34 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-11-11 18:57:41 -0500
commit604406fecf6be1d674e123f630957f15b1ed1dec (patch)
treedce43bc5b10e0393da875c2f073b81738572cee5 /grs
parentgrs/Netboot.py: control the entire alt-name for the initramfs/kernel/ISO (diff)
downloadgrss-604406fecf6be1d674e123f630957f15b1ed1dec.tar.gz
grss-604406fecf6be1d674e123f630957f15b1ed1dec.tar.bz2
grss-604406fecf6be1d674e123f630957f15b1ed1dec.zip
grs/TarIt.py: fix typo
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'grs')
-rw-r--r--grs/TarIt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/TarIt.py b/grs/TarIt.py
index 89e7465..00f0b6a 100644
--- a/grs/TarIt.py
+++ b/grs/TarIt.py
@@ -44,7 +44,7 @@ class TarIt(HashIt):
def tarit(self, alt_name=None):
# Create the tarball with the default name unless an alt_name is given.
if alt_name:
- self.medium_name = '%s.tar.xz' % alt_name)
+ self.medium_name = '%s.tar.xz' % alt_name
self.digest_name = '%s.DIGESTS' % self.medium_name
# We have to cd into the system's portage configroot and then out again.
cwd = os.getcwd()