mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-17 22:33:57 +00:00
6 lines
147 B
Python
6 lines
147 B
Python
import uuid
|
|
|
|
__author__ = 'fergalm'
|
|
def generate_save_file_name(prefix, filename):
|
|
return '/'.join([prefix, str(uuid.uuid1()), filename])
|