Skip to content

Instantly share code, notes, and snippets.

@ancho85
ancho85 / fixMySQLbackup.py
Last active July 18, 2016 13:36
Command line MySQL backup fixer
import cPickle
import sys
import re
import os.path
try:
recinfofile = file("recinfodic.txt","r")
except:
print "File 'recinfodic.txt' not found. Generate it with a python procedure found at devTools with the name 'PythonProcWriteRecInfo'"
sys.exit()