File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -187,11 +187,13 @@ Future<bool> askDivideDates() async {
187187}
188188
189189Future <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 ();
You can’t perform that action at this time.
0 commit comments