|
@@ -4,7 +4,7 @@ if __name__ == '__main__':
|
|
|
|
|
|
#Allows you to a relative import from the parent folder
|
|
|
import os.path, sys
|
|
|
- sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir))
|
|
|
+ sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir))
|
|
|
|
|
|
from youtube_upload import main
|
|
|
main.run()
|