Skip to content

Commit

Permalink
Minor Bug Fix
Browse files Browse the repository at this point in the history
Fix installing mutagen and pycairo failed.
  • Loading branch information
Anish-M-code committed Jan 16, 2022
1 parent 80e5315 commit 137a38c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Source Code/Python Source Code/MRT/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
import MRT.commons
import MRT.mrt
import MRT.v9
import os
try:
import mutagen
import cairo
except:
os.system('pip install mutagen')
os.system('pip install pycairo')
print('\n Please restart Program')


8 changes: 8 additions & 0 deletions Source Code/Python Source Code/MRT/v9.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
x=input('\n Press any key to exit...')
exit()

import os
try:
import mutagen
import cairo
except:
os.system('pip install mutagen')
os.system('pip install pycairo')

# Function to display main menu()
def san():
cls()
Expand Down

0 comments on commit 137a38c

Please sign in to comment.