mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
6 lines
121 B
Python
6 lines
121 B
Python
from pprint import pprint
|
|
|
|
def merge(dbag, cmdline):
|
|
dbag.setdefault('config', []).append( cmdline )
|
|
return dbag
|