9 lines
147 B
Python
9 lines
147 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import updater
|
||
|
|
||
|
target_folder = "activities"
|
||
|
converter_args = "-a -nv"
|
||
|
|
||
|
updater.process(target_folder, converter_args)
|