Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
Suggested-by: codespell
  • Loading branch information
pabs3 authored and rickysarraf committed Jul 25, 2021
1 parent 5b8844f commit 7cfa5fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apt_offline_core/AptOfflineLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def msg( self, msg ):
self.DispLock.release()

def warn( self, msg ):
'''Print messages with a warningr. If locking is available use them.'''
'''Print messages with a warning. If locking is available use them.'''
if self.lock:
self.DispLock.acquire()

Expand Down
2 changes: 1 addition & 1 deletion apt_offline_gui/AptOfflineQtFetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def popupDirectoryDialog(self):
def popupZipFileDialog(self):

if self.ui.saveDatacheckBox.isChecked() is True:
filename, _ = QtWidgets.QFileDialog.getExistingDirectory(self, 'Select the folder to save downlaods to')
filename, _ = QtWidgets.QFileDialog.getExistingDirectory(self, 'Select the folder to save downloads to')
else:
# Popup a Zip File selection box
filename, _ = QtWidgets.QFileDialog.getSaveFileName(self, 'Select the zip file to save downloads')
Expand Down

0 comments on commit 7cfa5fc

Please sign in to comment.