Skip to content

Commit 4100412

Browse files
committed
Fix help strings
1 parent e983f57 commit 4100412

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

qgis_processing/privacyAttackAlgorithm.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
except ImportError as error:
1414
raise ImportError(
1515
"Missing optional dependencies. To use the privacy attacks please "
16-
"install scikit-mobility "
17-
"(see https://github.com/scikit-mobility/scikit-mobility)."
16+
"install scikit-mobility. For details see: "
17+
"see https://github.com/scikit-mobility/scikit-mobility."
1818
) from error
1919

2020
sys.path.append("..")
@@ -51,7 +51,8 @@ def shortHelpString(self):
5151
"by an individual, and matches them against frequency "
5252
"vectors. A frequency vector is an aggregation on trajectory "
5353
"data showing the unique locations visited by an individual "
54-
"and the frequency with which he visited those locations. "
54+
"and the frequency with which he visited those locations.</p> "
55+
"<p>Caution: Make sure that the input layer CRS is EPSG:4326.</p>"
5556
)
5657

5758
def helpUrl(self):

0 commit comments

Comments
 (0)