Fixed argparge importing

This commit is contained in:
Remy
2011-08-16 21:04:54 -07:00
parent 4655591f18
commit 238e28afb5

View File

@@ -1,11 +1,15 @@
import os
import headphones
import argparse
import shutil
import time
from subprocess import call
try:
import argparse
except ImportError:
import lib.argparse as argparse
def encode(albumPath):
tempDirEncode=os.path.join(albumPath,"temp")