diff options
Diffstat (limited to 'packaging/wix/next_uuid.py')
-rw-r--r-- | packaging/wix/next_uuid.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packaging/wix/next_uuid.py b/packaging/wix/next_uuid.py new file mode 100644 index 0000000..6ed20b5 --- /dev/null +++ b/packaging/wix/next_uuid.py @@ -0,0 +1,10 @@ +import uuid
+
+"""
+a helper script to simply generate some new UUID
+"""
+
+out = open('next_uuid.txt', 'wt')
+for i in xrange(10):
+ out.write(str(uuid.uuid4()) + '\n')
+
|