Skip to content

Commit

Permalink
Changed the url for issues reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Coul33t committed Mar 4, 2019
1 parent 3223206 commit 3a954e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def report_error(backtrace):
))
textarea = QtGui.QTextEdit()
backtrace = ("\nPlease report the bug at:\n"
+ " http://bugs.foocorp.net/projects/lastscrape-gui/issues/new\n\n"
+ " https://github.com/encukou/lastscrape-gui/issues/new\n\n"
+ backtrace
)
textarea.setText(backtrace)
Expand Down Expand Up @@ -156,7 +156,7 @@ def cancel_loads():
try:
tracks = []
for line in infile:
track = line.strip('\r\n').decode('UTF-8').split('\t')
track = line.strip('\r\n').split('\t')
tracks.append( track )
if len(tracks)>=250:
QtGui.QApplication.processEvents()
Expand Down Expand Up @@ -204,7 +204,7 @@ def on_btnImport_clicked(self, *args):
)
except Exception as e:
QtGui.QMessageBox.warning(self, "Oops", "Couldn't connect to the "
"server. Please check your username and password.\n\n" +
"server. Please check your username and password.\n\n" +
str(e)[:256])
return
self.uploader = uploader = PushThread(scrobbler, self.scrobbles.tracklist)
Expand Down Expand Up @@ -377,4 +377,4 @@ def main(*args):

if __name__ == '__main__':
main(*sys.argv)

0 comments on commit 3a954e4

Please sign in to comment.