diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-01 13:57:00 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-01 13:57:00 +0200 |
| commit | cc4c5891636675050de7f8b7c34372838e4ab0db (patch) | |
| tree | 0c22f54a2760309503f253f7e7364fdde53f8cff | |
| parent | 3224f32826f137e559528195f4af6bf18e03bd9b (diff) | |
trying to get username in
| -rw-r--r-- | photoblaster/params.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/photoblaster/params.py b/photoblaster/params.py index 02090de..4c46355 100644 --- a/photoblaster/params.py +++ b/photoblaster/params.py @@ -80,6 +80,7 @@ class Params(object): instance = Raw(value, classname=classname) elif def_dict[key]['type'] == "string": instance = String(value, classname=classname) + print("{} -> {}".format(key, value)) self.__setattr__(key, instance) print("{} -> {}".format(key, value)) print("done") |
