diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 8fc47268..16731ef3 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -843,7 +843,10 @@ class InputsTab(PropTab): # get the full name of the actual user self.fullNameEdit = QLineEdit() - self.fullNameEdit.setText(fulluser) + try: + self.fullNameEdit.setText(fulluser) + except TypeError as e: + self.fullNameEdit.setText(fulluser[0]) # information about data structure dataroot = settings.value("data/dataRoot")