diff options
| author | Joel Granados Moreno <jgranado@redhat.com> | 2009-08-19 11:03:41 +0200 |
|---|---|---|
| committer | Joel Granados Moreno <jgranado@redhat.com> | 2009-09-17 16:42:36 +0200 |
| commit | 9c83a6bdf0b97e3cecfb3c49f703d4912ed56204 (patch) | |
| tree | 4f8f4dd2d46c2fce550d310aa4010cbf060f5ab8 /scripts/makeupdates | |
| parent | 0172e5881372739f744e7a0df7220a3e3e5fac15 (diff) | |
Initialize the opts variable.
* scripts/makeupdates : Prevent a trace back caused by trying to use an
uninitialized opts var.
Diffstat (limited to 'scripts/makeupdates')
| -rwxr-xr-x | scripts/makeupdates | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/makeupdates b/scripts/makeupdates index 465e9b663..37555ba74 100755 --- a/scripts/makeupdates +++ b/scripts/makeupdates @@ -198,6 +198,7 @@ def main(argv): updates = cwd + '/updates' keep, compile, help, unknown = False, False, False, False tag = None + opts = [] offset = 0 try: |
