fix interpreter hashbang, fix missing returncode in over.core.cmd

This commit is contained in:
Martinez 2015-06-08 20:49:20 +02:00
parent 57f4315c9a
commit 9acf3a3296
14 changed files with 15 additions and 14 deletions

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import time import time

2
aux.py
View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import sys import sys

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
from . import app from . import app

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import os import os

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import sys import sys

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import queue import queue
@ -66,6 +66,7 @@ class Command:
self.__dict__['thread'] = None self.__dict__['thread'] = None
self.__dict__['fifo'] = None self.__dict__['fifo'] = None
self.__dict__['terminated'] = False self.__dict__['terminated'] = False
self.__dict__['returncode'] = None
def dump(self, sequence=None, pretty=False): def dump(self, sequence=None, pretty=False):
out = [] out = []

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import os import os

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import copy import copy

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
# -------------------------------------------------- # --------------------------------------------------

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import math import math

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
# #
# Part of Project Overwatch # Part of Project Overwatch

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
''' '''

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
import time import time

View file

@ -1,4 +1,4 @@
#! /bin/env python3 #! /usr/bin/env python3
# encoding: utf-8 # encoding: utf-8
_version = (0, '00000000') # OVER_VERSION_IDENTIFIER _version = (0, '00000000') # OVER_VERSION_IDENTIFIER