Check if stegano is installed in the 'binary' script.

This commit is contained in:
cedricbonhomme 2011-04-06 21:10:58 +02:00
parent f504e37ac6
commit 1b38541344

View file

@ -24,7 +24,10 @@ __version__ = "$Revision: 0.1 $"
__date__ = "$Date: 2011/04/06 $"
__license__ = "GPLv3"
from stegano import slsb
try:
from stegano import slsb
except:
print "Install stegano: python setup.py install"
if __name__ == '__main__':
# Point of entry in execution mode.