Skip to content

Instantly share code, notes, and snippets.

@konstantinfarrell
Last active March 11, 2017 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konstantinfarrell/3c52c279426281501337c79908c5182f to your computer and use it in GitHub Desktop.
Save konstantinfarrell/3c52c279426281501337c79908c5182f to your computer and use it in GitHub Desktop.
Is Massive broken because of that stupid database file? Use this. Python 3.6
import os
def fix_massive():
user = os.getlogin()
shit = rf'C:\Users\{user}\AppData\Local\Native Instruments\Massive\NIMassiveDataBase_ul'
if os.path.exists(shit):
os.remove(shit)
if __name__ == '__main__':
fix_massive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment