trailing spaces in sql schema
[plcapi.git] / PLC / __init__.py
index d9c68c0..7b7fc41 100644 (file)
@@ -1 +1,2 @@
-all = 'Addresses AddressTypes API Auth Boot BootStates Cache ConfFiles Config Debug Events Faults Filter GPG Keys KeyTypes Messages Method NetworkMethods NetworkTypes NodeGroups NodeNetworks Nodes Parameter PCUs Peers Persons POD PostgreSQL PyCurl Roles sendmail Sessions Shell Sites SliceAttributes SliceAttributeTypes SliceInstantiations Slices Table Test'.split()
+import os
+all = [i[:-3] for i in os.listdir(os.path.dirname(__file__)) if i.endswith(".py") and not i.startswith(".")]