Skip to content

Commit

Permalink
fix output manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranjol authored Jul 3, 2016
1 parent 86a8044 commit fd54c82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ def encode(self):
global relative_path
global dirname
global manifest_destination
output_parent_dir = os.path.dirname(str(output))
normpath = os.path.normpath(str(output))
output_parent_dir = os.path.dirname(str(out))
normpath = os.path.normpath(str(out))
relative_path = normpath.split(os.sep)[-1]
dirname = os.path.split(os.path.basename(str(output)))[1]
dirname = os.path.split(os.path.basename(str(out)))[1]
manifest_destination = output_parent_dir + '/%s_manifest.md5' % dirname
if self.checkBox_2.isChecked():
m = hashlib.md5()
Expand Down

0 comments on commit fd54c82

Please sign in to comment.