63 rx_base = QRegExp('(.+/)(trunk|tags|branches).*') |
63 rx_base = QRegExp('(.+/)(trunk|tags|branches).*') |
64 if not rx_base.exactMatch(reposURL): |
64 if not rx_base.exactMatch(reposURL): |
65 E5MessageBox.critical( |
65 E5MessageBox.critical( |
66 self, |
66 self, |
67 self.trUtf8("Subversion Error"), |
67 self.trUtf8("Subversion Error"), |
68 self.trUtf8("""The URL of the project repository has an""" |
68 self.trUtf8( |
|
69 """The URL of the project repository has an""" |
69 """ invalid format. The list operation will""" |
70 """ invalid format. The list operation will""" |
70 """ be aborted""")) |
71 """ be aborted""")) |
71 self.reject() |
72 self.reject() |
72 return |
73 return |
73 |
74 |