source: restoreexclpoint.py

Last change on this file was e40e335, checked in by baerbaer <baerbaer@…>, 16 years ago

Initial import to BerliOS corresponding to 3.0.4

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/smmp/trunk@1 26dc1dd8-5c4e-0410-9ffe-d298b4865968

  • Property mode set to 100755
File size: 124 bytes
Line 
1#!/usr/bin/env python
2import sys
3import os
4for fn in sys.argv[1:]:
5 try:
6 os.rename(fn + ".bak", fn)
7 except:
8 pass
Note: See TracBrowser for help on using the repository browser.