Skip to content

Commit f45fead

Browse files
authored
Merge pull request #14 from jthet/main
fix: default console output formatting when both output type and emailformat not set
2 parents 1b4e282 + 02b337e commit f45fead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

linkedindumper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def main():
324324
if mailformat:
325325
print(f"{person['firstname']};{person['lastname']};{person['email']};{person['position']};{person['gender']};{person['location']};{person['profile_link']}")
326326
else:
327-
print(";".join(person.values()))
327+
print(f"{person['firstname']};{person['lastname']};{person['position']};{person['gender']};{person['location']};{person['profile_link']}")
328328
print()
329329

330330
if args.output_json:

0 commit comments

Comments
 (0)