some fixes in subprocess.Popen args for windows/linux support

This commit is contained in:
zserg 2016-01-27 15:54:56 +03:00
parent 91e886163e
commit 6e6f88c336
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ class Media(object):
source = self.source
process_output = subprocess.Popen(
[exiftool, source],
'%s "%s"' % (exiftool, source),
stdout=subprocess.PIPE,
shell=True,
universal_newlines=True

View File

@ -156,7 +156,7 @@ class Video(Media):
source = self.source
process_output = subprocess.Popen(
[exiftool, source],
'%s "%s"' % (exiftool, source),
stdout=subprocess.PIPE,
shell=True,
universal_newlines=True

View File

@ -50,7 +50,7 @@ def test_create_directory_invalid_permissions():
if os.name == 'nt':
raise SkipTest("It isn't implemented on Windows")
filesystem = FileSystem()
status = filesystem.create_directory(os.path.join('apathwhichdoesnotexist','afolderwhichdoesnotexist'))
status = filesystem.create_directory('/apathwhichdoesnotexist/afolderwhichdoesnotexist')
assert status == False