Skip to content

Commit

Permalink
fix error in build because of wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
shaileshaanand committed Oct 10, 2019
1 parent ca24e1b commit 330caf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debt_management/debt_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from .main_design import *
from .new_transaction_dialog import *
import about_us
from .about_us import Ui_Dialog as About_Ui_Dialog

Person = namedtuple('Person', ['name', 'personid', 'total'])
Transaction = namedtuple(
Expand Down Expand Up @@ -360,7 +360,7 @@ def main():
ui.people_list.customContextMenuRequested.connect(person_right_clicked)
ui.people_total_label.setAlignment(Qt.AlignCenter)
about = QDialog()
about_us_ui = about_us.Ui_Dialog()
about_us_ui = About_Ui_Dialog()
about_us_ui.setupUi(about)
about_us_ui.label.setText(about_us_ui.label.text().format(version))
about_us_ui.label.setAlignment(Qt.AlignCenter)
Expand Down

0 comments on commit 330caf9

Please sign in to comment.