blob: 445cc5ec8ea81762d1334c3a8ad3faa523617471 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env python
import sys
sys.path.append('/usr/share/modern-paste/app')
from util.cryptography import get_decid
from database.paste import deactivate_paste
print(deactivate_paste(get_decid(sys.argv[1])))
|