Skip to content

Commit

Permalink
Remove prints. :/
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Oct 9, 2015
1 parent add2116 commit 992f590
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions djangocms_helper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,11 +349,9 @@ def main(argv=sys.argv): # pragma: no cover
sys.path.insert(0, '.')
# ensure that argv, are unique and the same type as doc string
argv = ensure_unicoded_and_unique(argv)
print(argv)
if len(argv) > 1:
application = argv[1]
application_module = __import__(application)
print(application_module, application)
try:
# by default docopt uses sys.argv[1:]; ensure correct args passed
args = docopt(__doc__, argv=argv[1:], version=application_module.__version__)
Expand Down

0 comments on commit 992f590

Please sign in to comment.