##// END OF EJS Templates
Fix check statements from () which had no effect really
marcink -
r3892:3a1cf70e beta
parent child Browse files
Show More
@@ -58,5 +58,5 b' except ImportError:'
58 __author__ = 'Marcin Kuzminski'
58 __author__ = 'Marcin Kuzminski'
59 __url__ = 'http://rhodecode.org'
59 __url__ = 'http://rhodecode.org'
60
60
61 is_windows = __platform__ in ('Windows')
61 is_windows = __platform__ in ['Windows']
62 is_unix = not is_windows
62 is_unix = not is_windows
@@ -30,7 +30,7 b" callback = lambda V: ('.'.join(map(str, "
30 # defines current platform
30 # defines current platform
31 __platform__ = platform.system()
31 __platform__ = platform.system()
32
32
33 is_windows = __platform__ in ('Windows')
33 is_windows = __platform__ in ['Windows']
34
34
35 requirements = [
35 requirements = [
36 "waitress==0.8.2",
36 "waitress==0.8.2",
General Comments 0
You need to be logged in to leave comments. Login now