mirror of https://github.com/kivy/kivy.git
adding simple function to silence most of the output
This commit is contained in:
parent
32821ee3ad
commit
1b29ddb2a1
|
@ -60,6 +60,13 @@ import kivy.interactive
|
||||||
import kivy.garden
|
import kivy.garden
|
||||||
from kivy.factory import Factory
|
from kivy.factory import Factory
|
||||||
|
|
||||||
|
# check for silenced build
|
||||||
|
BE_QUIET = False
|
||||||
|
for arg in sys.argv:
|
||||||
|
if "silenced=" in arg:
|
||||||
|
arg.split("=")[1] == "yes":
|
||||||
|
BE_QUIET = True
|
||||||
|
|
||||||
# force loading of all classes from factory
|
# force loading of all classes from factory
|
||||||
for x in list(Factory.classes.keys())[:]:
|
for x in list(Factory.classes.keys())[:]:
|
||||||
getattr(Factory, x)
|
getattr(Factory, x)
|
||||||
|
@ -75,7 +82,7 @@ def writefile(filename, data):
|
||||||
global dest_dir
|
global dest_dir
|
||||||
# avoid to rewrite the file if the content didn't change
|
# avoid to rewrite the file if the content didn't change
|
||||||
f = os.path.join(dest_dir, filename)
|
f = os.path.join(dest_dir, filename)
|
||||||
print('write', filename)
|
if not BE_QUIET: print('write', filename)
|
||||||
if os.path.exists(f):
|
if os.path.exists(f):
|
||||||
with open(f) as fd:
|
with open(f) as fd:
|
||||||
if fd.read() == data:
|
if fd.read() == data:
|
||||||
|
|
Loading…
Reference in New Issue