Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1926 from geopython/master
MetaSearch: fix plugin zipfile
  • Loading branch information
tomkralidis committed Feb 25, 2015
2 parents 0b874ce + 701cd1c commit e0e77c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/pavement.py
Expand Up @@ -123,7 +123,7 @@ def package():
if file_add.endswith('.pyc') or file_add in skip_files:
continue
filepath = os.path.join(root, file_add)
relpath = os.path.relpath(filepath)
relpath = os.path.join(PLUGIN_NAME, os.path.relpath(filepath))
zipf.write(filepath, relpath)
return package_file # return name of created zipfile

Expand Down

0 comments on commit e0e77c6

Please sign in to comment.