Skip to content

Commit

Permalink
Wrap main.main() in if __name__ == '__main__'
Browse files Browse the repository at this point in the history
  • Loading branch information
strathmeyer committed Feb 16, 2012
1 parent fb0f938 commit dfcfd98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bees
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

from beeswithmachineguns import main

main.main()
if __name__ == '__main__':
main.main()

0 comments on commit dfcfd98

Please sign in to comment.