Skip to content

Commit 83c95a1

Browse files
committed
minor change in texts in json fix options
1 parent 81f5f25 commit 83c95a1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

bin/gpth.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,10 @@ void main(List<String> arguments) async {
210210
await output.create(recursive: true);
211211

212212
if (args['modify-json'].toString() == "0") {
213-
print('Fixin JSON files. Removing suffix (this may take some time) ...');
213+
print('Fixing JSON files. Removing suffix (this may take some time)...');
214214
await renameIncorrectJsonFiles(input);
215215
}
216216

217-
218217
/// ##################################################
219218
220219
// Okay, time to explain the structure of things here

lib/interactive.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,13 @@ Future<bool> askDivideDates() async {
187187
}
188188

189189
Future<num> askModifyJson() async {
190-
print('Check if your .json files of your photos contains "supplemental-metadata" '
190+
print(
191+
'Check if your .json files of your photos contains "supplemental-metadata" '
191192
'between the original extension and .json. If this suffix is present, '
192193
'the script will not detect the corresponding JSON file');
193194
print('For example: myImageName.jpg.supplemental-metadata.json');
194-
print('[1] (Erase suffix) - [Recommended] Yes, the photos have the suffix "supplemental-metadata"');
195+
print(
196+
'[1] (Erase suffix) - [Recommended] Yes, the photos have the suffix "supplemental-metadata"');
195197
print('[2] (Dont Erease suffix) - No');
196198
print('(Type a number or press enter for default):');
197199
final answer = await askForInt();

0 commit comments

Comments
 (0)