diff -r bedbe458d792 -r 0665c4d509c9 eric6/Project/NewDialogClassDialog.py --- a/eric6/Project/NewDialogClassDialog.py Tue Sep 24 19:08:10 2019 +0200 +++ b/eric6/Project/NewDialogClassDialog.py Tue Sep 24 19:44:17 2019 +0200 @@ -85,6 +85,8 @@ @return tuple giving the classname (string) and the file name (string) """ - return self.classnameEdit.text(), \ + return ( + self.classnameEdit.text(), os.path.join(self.pathnamePicker.text(), self.filenameEdit.text()) + )