Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorSimon Schampijer <erikos@localhost.localdomain>2008-11-21 12:15:06 (GMT)
committer Simon Schampijer <erikos@localhost.localdomain>2008-11-21 12:15:06 (GMT)
commitbb0a5377f1b767db59099a7e552b4b9d4076cdb9 (patch)
treee57d2c21222dff93deb1b81d2e7a23f9a2f8a346 /release
parenta42d6f962572415c1476aad73057aa36387addd6 (diff)
Fix the regular expression to find the module name
Diffstat (limited to 'release')
-rwxr-xr-xrelease4
1 files changed, 2 insertions, 2 deletions
diff --git a/release b/release
index 4fca10d..8fc93ed 100755
--- a/release
+++ b/release
@@ -274,7 +274,7 @@ class AutomakeRelease(Release):
Release.__init__(self)
self.config_path = 'configure.ac'
- self.name_regexp = 'AC_INIT\(\[(.*)\],\[(.*)\],\[(.*)\],\[(.*?)\]'
+ self.name_regexp = 'AC_INIT\(\[.*?\],\[.*?\],\[.*?\],\[(.*?)\]'
self.version_regexp = 'AC_INIT\(\[.*?\],\[(.*?)\]'
self.tarball_command = ['make', 'distcheck']
@@ -289,7 +289,7 @@ def main():
elif os.path.exists('setup.py'):
release = ActivityRelease()
else:
- print 'Unknow module type.'
+ print 'Unknown module type.'
release.read_config()
if options.version is None: