Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Commit

Permalink
related: #18
Browse files Browse the repository at this point in the history
  • Loading branch information
emre committed Jun 19, 2013
1 parent 14364da commit e533b1f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion storm/bin/storm
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
#!/usr/bin/python


from manage import Manager
try:
from manage import Manager
except ImportError:
# since manage.py library changed its api, try to import with the old syntax.
try:
from manager import Manager
except ImportError:
raise Exception('manage.py library is not installed.')

from storm import Storm
from storm.exceptions import StormValueError
from storm.ssh_uri_parser import parse
Expand Down

0 comments on commit e533b1f

Please sign in to comment.