Skip to content
Snippets Groups Projects
Commit 0e391a1da054 authored by Sylvain's avatar Sylvain
Browse files

use a generator expr

parent dd3597baee8e
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
modname = "rql" modname = "rql"
numversion = (0, 18, 1) numversion = (0, 18, 1)
version = '.'.join([str(num) for num in numversion]) version = '.'.join(str(num) for num in numversion)
license = 'LCL' license = 'LCL'
copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE). copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment