Skip to content

Commit

Permalink
The main function moved to __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
sebdah committed Apr 13, 2013
1 parent fd44c40 commit 03b9441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dynamic-dynamodb
Expand Up @@ -18,10 +18,10 @@ limitations under the License.
"""

import sys
from dynamic_dynamodb import main
import dynamic_dynamodb

if __name__ == '__main__':
main.main()
dynamic_dynamodb.main()
sys.exit(0)

sys.exit(1)

0 comments on commit 03b9441

Please sign in to comment.