Skip to content

Commit c2c326c

Browse files
committed
de-plenk question and exclamation marks
1 parent c51025a commit c2c326c

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

python/plugins/db_manager/db_plugins/oracle/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def hasSpatialSupport(self):
190190
return self.has_spatial
191191

192192
def hasRasterSupport(self):
193-
"""No raster support for the moment !"""
193+
"""No raster support for the moment!"""
194194
# return self.has_raster
195195
return False
196196

python/plugins/db_manager/db_plugins/oracle/info_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ def spatialInfo(self):
650650
"DBManagerPlugin",
651651
(u'<warning> Metadata extent is different from'
652652
u'real extent. You should <a href="action:extent'
653-
u'/update">update it</a> !'))))
653+
u'/update">update it</a>!'))))
654654

655655
# is there an entry in geometry_columns?
656656
if self.table.geomType.lower() == 'geometry':

python/plugins/db_manager/db_plugins/oracle/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def runAction(self, action):
336336

337337
msg = QApplication.translate(
338338
"DBManagerPlugin",
339-
"Do you want to {} index {} ?".format(
339+
"Do you want to {} index {}?".format(
340340
index_action, index_name))
341341
QApplication.restoreOverrideCursor()
342342
try:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def checkParameterValuesBeforeExecuting(alg):
3333
if alg.getParameterValue(u'setnull') or alg.getParameterValue(u'null'):
3434
return None
3535

36-
return alg.tr("You need to set at least 'setnull' or 'null' parameters for this algorithm !")
36+
return alg.tr("You need to set at least 'setnull' or 'null' parameters for this algorithm!")
3737

3838

3939
def processInputs(alg):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
def checkParameterValuesBeforeExecuting(alg):
3030
""" Verify if we have the right parameters """
3131
if alg.getParameterValue(u'rules') and alg.getParameterValue(u'txtrules'):
32-
return alg.tr("You need to set either a rules file or write directly the rules !")
32+
return alg.tr("You need to set either a rules file or write directly the rules!")
3333

3434
return None
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def checkParameterValuesBeforeExecuting(alg):
3939
# Verifiy that we have the good number of columns
4040
column = alg.getParameterValue(u'column')
4141
if ((column is None or len(column) == 0) and upload) or (len(column.split(",")) != len(upload.split(","))):
42-
return alg.tr(u"The number of columns and the number of upload parameters should be equal !")
42+
return alg.tr(u"The number of columns and the number of upload parameters should be equal!")
4343

4444
# Verify from_type and to_type values
4545
for geom in [u'from', u'to']:

python/plugins/processing/algs/otb/maintenance/OTBHelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def get_xml_description_from_application_name(our_app, criteria=None):
228228
real_criteria = criteria
229229

230230
if len(our_app) == 0:
231-
raise Exception("App name is empty !")
231+
raise Exception("App name is empty!")
232232

233233
# get parameters
234234
param_keys = [param_key for param_key in app_instance.GetParametersKeys()]

python/plugins/processing/algs/otb/maintenance/OTBTester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def get_command_line(self, the_list, the_dict):
236236
result.extend(["otbcli_%s" % each for each in itemz[1]])
237237

238238
if len(result[0]) == 7:
239-
raise Exception("App name is empty !")
239+
raise Exception("App name is empty!")
240240

241241
result.extend(itemz[2])
242242
result.append("-testenv")

python/plugins/processing/algs/otb/maintenance/TestOTBAlgorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test(self):
9494
self.assertTrue(ut_command_validation != "")
9595

9696
if ut_command.split(" ")[0] in black_list:
97-
raise Exception("Blacklisted test !")
97+
raise Exception("Blacklisted test!")
9898

9999
args = shlex.split(ut_command)
100100
failed = False

src/core/layertree/qgslayertreemodellegendnode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ const QImage& QgsWMSLegendNode::getLegendGraphic() const
615615
connect( mFetcher.data(), SIGNAL( error( const QString& ) ), this, SLOT( getLegendGraphicErrored( const QString& ) ) );
616616
connect( mFetcher.data(), SIGNAL( progress( qint64, qint64 ) ), this, SLOT( getLegendGraphicProgress( qint64, qint64 ) ) );
617617
mFetcher->start();
618-
} // else QgsDebugMsg("XXX No legend supported ?");
618+
} // else QgsDebugMsg("XXX No legend supported?");
619619

620620
}
621621

0 commit comments

Comments
 (0)