diff options
Diffstat (limited to 'modules/todos')
-rwxr-xr-x | modules/todos/main.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/todos/main.sh b/modules/todos/main.sh index 299bcb0..a9786a1 100755 --- a/modules/todos/main.sh +++ b/modules/todos/main.sh @@ -36,7 +36,7 @@ else fi _ak_modules_todos_create(){ - TEMP="$(ak-tempassin)" + TEMP="$(_ak_make_temp_directory)" cd $TEMP export TODOS_FILE="$(date -u +%s)" vi $TODOS_FILE @@ -87,7 +87,7 @@ _ak_modules_todos_import(){ } _ak_modules_todos_add(){ - TEMP="$(ak-tempassin)" + TEMP="$(_ak_make_temp_directory)" cd $TEMP if [ -f $1 ]; then FILE="$1" |