We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f28f3 commit 63dd460Copy full SHA for 63dd460
data/nemo-actions/extract_action_strings
@@ -2,7 +2,6 @@
2
3
import os
4
import glob
5
-import datetime
6
import sys
7
import codecs
8
from gi.repository import GLib
@@ -16,14 +15,13 @@ class Main:
16
15
else:
17
action_files = glob.glob(os.path.join(os.getcwd(), "*.nemo_action.in"))
18
if len(action_files) > 0:
19
- dt = datetime.datetime
20
outstring = """
21
'''
22
This is a dummy file for translating Nemo Action files
23
24
- It was generated by the extract_action_strings script on %s UTC.
+ It was generated by the extract_action_strings script.
25
26
- """ % (dt.now(datetime.UTC))
+ """
27
outstring += "\n"
28
for fn in action_files:
29
keyfile = GLib.KeyFile.new()
0 commit comments