Move print statement to the correct scope so it displays both lock and unlock.

442625
This commit is contained in:
Rob Crittenden 2008-04-15 21:26:37 -04:00
parent 4eb7c51e59
commit 78bdb75291

View File

@ -59,7 +59,7 @@ def main():
return 0
except:
raise
print args[1] + " successfully %s" % msg
print args[1] + " successfully %s" % msg
return 0