Author: hwright
Date: Mon Jul 25 20:03:38 2011
New Revision: 1150873
URL: http://svn.apache.org/viewvc?rev=1150873&view=rev
Log:
This really is untested. I mean it.
* tools/client-side/detach.py:
Raise an exception by default to prevent "accidental" usage.
Modified:
subversion/trunk/tools/client-side/detach.py
Modified: subversion/trunk/tools/client-side/detach.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/detach.py?rev=1150873&r1=1150872&r2=1150873&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/detach.py (original)
+++ subversion/trunk/tools/client-side/detach.py Mon Jul 25 20:03:38 2011
@@ -266,6 +266,6 @@ def main():
if __name__ == '__main__':
- #raise Exception("""This script is unfinished and not ready to be used on
live data.
- # Trust us.""")
+ raise Exception("""This script is unfinished and not ready to be used on
live data.
+ Trust us.""")
main()