--- a/WizardDataUriEncoder/DataUriEncoderWizardDialog.py Mon Dec 30 10:45:15 2013 +0100 +++ b/WizardDataUriEncoder/DataUriEncoderWizardDialog.py Mon Dec 30 11:10:01 2013 +0100 @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ -Module implementing DataUriEncoderWizardDialog. +Module implementing the base64 data URI encoder wizard dialog. """ import os @@ -57,7 +57,7 @@ class DataUriEncoderWizardDialog(QDialog, Ui_DataUriEncoderWizardDialog): """ - Class documentation goes here. + Class implementing the base64 data URI encoder wizard dialog. """ def __init__(self, parent=None): """ @@ -125,7 +125,7 @@ if index in [1, 4]: self.encryptCheckBox.setChecked(False) self.dataCheckBox.setChecked(True) - elif index in [2, 3, 5, 6]: + elif index in [0, 2, 3, 5, 6]: self.encryptCheckBox.setChecked(False) self.dataCheckBox.setChecked(False)