Last active
March 11, 2017 18:58
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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