Skip to content

Commit

Permalink
Merge pull request #52 from goriy/fix-zip
Browse files Browse the repository at this point in the history
Fix zip format recognition
  • Loading branch information
Kentzo authored Sep 27, 2018
2 parents 96dbc1d + f19b099 commit 80cebce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_archive_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class GitArchiver(object):
'gz': 'w:gz',
'xz': 'w:xz'
}
ZIPFILE_FORMATS = ('.zip',)
ZIPFILE_FORMATS = ('zip',)

LOG = logging.getLogger('GitArchiver')

Expand Down

0 comments on commit 80cebce

Please sign in to comment.