remove 3.4 check, 3.5 works too
This commit is contained in:
parent
5099ee2e10
commit
eeae402218
1 changed files with 1 additions and 4 deletions
5
install
5
install
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.4
|
||||
#!/usr/bin/env python3
|
||||
from __future__ import division, with_statement, print_function
|
||||
|
||||
from contextlib import closing
|
||||
|
@ -126,9 +126,6 @@ def has_bin(cmd):
|
|||
return subprocess.call(['which', cmd], stdout=subprocess.PIPE) == 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
if sys.version_info[:2] != (3,4):
|
||||
print("You need python3.4")
|
||||
sys.exit(1)
|
||||
if len(sys.argv) == 1:
|
||||
if sys.platform == 'darwin':
|
||||
target = os.path.expanduser('~/Library/Application Support/Open Media Libary')
|
||||
|
|
Loading…
Reference in a new issue