Skip to content

Commit c01ca3a

Browse files
committed
JavaDocs: Use en_US locale regardless the OS configuration.
1 parent ae01a99 commit c01ca3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/generate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def create_autodoc(self):
4343
def create_javadoc(self):
4444
self._clean_directory(self.JAVA_TARGET)
4545
print 'Generating javadoc'
46-
call(['javadoc', '-sourcepath', self.JAVA_SRC, '-d', self.JAVA_TARGET,
47-
'-notimestamp', 'org.robotframework'])
46+
call(['javadoc', '-locale', 'en_US', '-sourcepath', self.JAVA_SRC,
47+
'-d', self.JAVA_TARGET, '-notimestamp', 'org.robotframework'])
4848

4949
def _clean_directory(self, dirname):
5050
if os.path.exists(dirname):

0 commit comments

Comments
 (0)