Skip to content

Commit

Permalink
Release 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Jan 3, 2018
2 parents 625984f + 0e72593 commit 1c70ac2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion knossos/center.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# The version should follow the http://semver.org guidelines.
# Only remove the -dev tag if you're making a release!
VERSION = '0.7.5'
VERSION = '0.7.6'
UPDATE_LINK = 'https://fsnebula.org/knossos'
INNOEXTRACT_LINK = 'https://dev.tproxy.de/knossos/innoextract.txt'
DEBUG = os.getenv('KN_DEBUG', '0').strip() == '1'
Expand Down
6 changes: 3 additions & 3 deletions knossos/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ def work1(self, pkg):
else:
progress.start_task(0.0, 0.4, '%s')

7z_msg = ''
_7z_msg = ''
if pkg.is_vp:
p = util.Popen([util.SEVEN_PATH, 'a', '-bsp1', ar_path, vp_name],
cwd=self._dir.name, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
Expand All @@ -1103,10 +1103,10 @@ def work1(self, pkg):
if m:
progress.update(int(m.group(1)) / 100., 'Compressing...')
else:
7z_msg += line
_7z_msg += line

if p.returncode != 0:
logging.error('Failed to build %s! (%s)' % (ar_name, 7z_msg))
logging.error('Failed to build %s! (%s)' % (ar_name, _7z_msg))
self._reason = 'bad archive'
self._msg = pkg.name
self.abort()
Expand Down

0 comments on commit 1c70ac2

Please sign in to comment.