1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-19 04:20:23 +01:00

Removed six as a dependency

Changed logic for checking if run_command argument is a list. Fixed
tests and refactoring save_save() method in cd32 module.
This commit is contained in:
2017-01-01 14:13:48 +01:00
parent ef5631de3c
commit 4c39e572a6
5 changed files with 9 additions and 12 deletions

View File

@@ -3,7 +3,6 @@ Misc utilities
"""
from distutils import spawn
import os
import six
import subprocess
import sys
try:
@@ -109,11 +108,12 @@ def extract_archive(arch_name, show_gui_message, message_text):
def run_command(cmd):
"""
Run provided command. Return true if command execution returns zero exit
code, false otherwise. If cmd is a string, there would be an attempt to
split it up for subprocess call method.
code, false otherwise. If cmd is not a list, there would be an attempt to
split it up for subprocess call method. May throw exception if cmd is not
a list neither a string.
"""
if isinstance(six.text_type(cmd), six.string_types):
if not isinstance(cmd, list):
cmd = cmd.split()
code = subprocess.call(cmd)