Skip to content

Commit fbf4d67

Browse files
committed
de-plenk more
1 parent 962726c commit fbf4d67

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

python/plugins/processing/algs/grass7/ext/r_drain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ def checkParameterValuesBeforeExecuting(alg):
3636
parameters = [alg.getParameterValue(f) for f in ['-c', '-a', '-n']]
3737
paramscore = [f for f in parameters if f]
3838
if len(paramscore) > 1:
39-
return alg.tr("-c, -a, -n parameters are mutually exclusive !")
39+
return alg.tr("-c, -a, -n parameters are mutually exclusive!")
4040
return None

python/plugins/processing/algs/grass7/ext/r_li.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ def checkMovingWindow(alg, outputTxt=False):
7575
movingWindow = True
7676

7777
if not movingWindow and not outputTxt:
78-
return alg.tr('Your configuration needs to be a "moving window" configuration !')
78+
return alg.tr('Your configuration needs to be a "moving window" configuration!')
7979

8080
if movingWindow and outputTxt:
81-
return alg.tr('Your configuration needs to be a non "moving window" configuration !')
81+
return alg.tr('Your configuration needs to be a non "moving window" configuration!')
8282

8383
return None
8484

python/plugins/processing/algs/grass7/ext/r_li_orig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def checkMovingWindow(alg):
6868
movingWindow = True
6969

7070
if not movingWindow:
71-
return alg.tr('Your configuration needs to be a "moving window" configuration !')
71+
return alg.tr('Your configuration needs to be a "moving window" configuration!')
7272

7373
return None
7474

src/gui/qgsfilewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ QString QgsFileWidget::toUrl( const QString& path ) const
294294
QUrl url = QUrl::fromUserInput( urlStr );
295295
if ( !url.isValid() || !url.isLocalFile() )
296296
{
297-
QgsDebugMsg( QString( "URL: %1 is not valid or not a local file !" ).arg( path ) );
297+
QgsDebugMsg( QString( "URL: %1 is not valid or not a local file!" ).arg( path ) );
298298
rep = path;
299299
}
300300

0 commit comments

Comments
 (0)