Skip to content

Commit

Permalink
Fixed a minor issue with hiaselhans's PR related to relative imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
liftoff committed Jan 30, 2015
1 parent 02edaef commit 9ceac4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions pyminifier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,5 +284,3 @@ def pyminify(options, *files):
round(float(new_filesize)/float(filesize) * 100, 2)))
else:
print(result)


6 changes: 3 additions & 3 deletions pyminifier/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from optparse import OptionParser
import sys

from pyminifier import pyminify
from pyminifier import __version__
from . import pyminify
from . import __version__

py3 = False
lzma = False
Expand Down Expand Up @@ -169,4 +169,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 9ceac4e

Please sign in to comment.