Skip to content

Commit ba280fb

Browse files
committed
Tidy up use of format().
1 parent 315fa8d commit ba280fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/recipe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,8 @@ def clean_build(self, arch=None):
548548
if exists(base_dir):
549549
dirs.append(base_dir)
550550
if not dirs:
551-
warning(('Attempted to clean build for {} but found no existing '
552-
'build dirs').format(self.name))
551+
warning('Attempted to clean build for {} but found no existing '
552+
'build dirs'.format(self.name))
553553

554554
for directory in dirs:
555555
if exists(directory):

0 commit comments

Comments
 (0)