~facundo/encuentro/trunk

« back to all changes in this revision

Viewing changes to encuentro/ui/dialogs.py

  • Committer: Facundo Batista
  • Date: 2013-04-16 01:58:03 UTC
  • mfrom: (151.2.7 trunk)
  • Revision ID: facundo@taniquetil.com.ar-20130416015803-btbp3sd6dn5sjyds
Merged trunk back in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
configurar nuevamente el programa.
39
39
"""
40
40
 
 
41
 
41
42
class ForceUpgradeDialog(QDialog):
42
43
    """The dialog for a force upgrade."""
43
44
    def __init__(self):
96
97
    frame = UpdateDialog()
97
98
    frame.show()
98
99
    frame.exec_()
99